aboutsummaryrefslogtreecommitdiff
path: root/src/position.h
blob: 05d21fa3eb275f0b02b6f0bd12ea49b496f61031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef POSITION_H
#define POSITION_H

typedef struct Position
{
	unsigned int x;
	unsigned int y;
} Position;

Position position_create(unsigned int x, unsigned int y);

#endif