#include "position.h" Position position_create(unsigned int x, unsigned int y) { Position pos = {.x = x, .y = y}; return pos; }