aboutsummaryrefslogtreecommitdiff
path: root/src/position.c
blob: 937edd59f937b4d30b3279334ef04ef14269a2ed (plain)
1
2
3
4
5
6
7
8
9
#include "position.h"

Position position_create(unsigned int x, unsigned int y)
{
	Position pos = {.x = x, .y = y};

	return pos;
}