2014-12-16 13:12:53 +00:00
|
|
|
#ifndef _BASETYPES_H_
|
|
|
|
#define _BASETYPES_H_
|
|
|
|
|
2014-12-16 13:12:54 +00:00
|
|
|
typedef short coord_t;
|
|
|
|
typedef unsigned short ucoord_t;
|
2014-12-16 13:12:53 +00:00
|
|
|
|
2014-12-16 13:12:55 +00:00
|
|
|
enum dir_t : char
|
|
|
|
{
|
|
|
|
N = 'N',
|
|
|
|
S = 'S',
|
|
|
|
E = 'E',
|
|
|
|
W = 'W',
|
|
|
|
};
|
|
|
|
|
2014-12-16 13:12:53 +00:00
|
|
|
#endif //_BASETYPES_H_
|