blob: d1bc9eb71376c4a25fb2451934ef59d3aa3c4bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|