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

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

	return pos;
}