home · contact · privacy
70fc39d1dfaf1ec8836fbfac069c1617024312f9
[plomrogue] / src / yx_uint16.h
1 #ifndef YX_UINT16_H
2 #define YX_UINT16_H
3
4 #define NORTH 1
5 #define EAST 2
6 #define SOUTH 3
7 #define WEST 4
8
9 struct yx_uint16 {
10   uint16_t y;
11   uint16_t x; };
12
13 extern char yx_uint16_cmp (struct yx_uint16, struct yx_uint16);
14 struct yx_uint16 mv_yx_in_dir (char, struct yx_uint16);
15
16 #endif