15 lines
No EOL
192 B
C
15 lines
No EOL
192 B
C
#ifndef _BASETYPES_H_
|
|
#define _BASETYPES_H_
|
|
|
|
typedef short coord_t;
|
|
typedef unsigned short ucoord_t;
|
|
|
|
enum dir_t : char
|
|
{
|
|
N = 'N',
|
|
S = 'S',
|
|
E = 'E',
|
|
W = 'W',
|
|
};
|
|
|
|
#endif //_BASETYPES_H_
|