ttrts/maths/mathtypes.h

17 lines
240 B
C
Raw Normal View History

#ifndef _BASETYPES_H_
#define _BASETYPES_H_
2014-12-16 13:12:59 +00:00
// Coordinate types
typedef short coord_t;
typedef unsigned short ucoord_t;
2014-12-16 13:12:59 +00:00
// Direction representation
enum dir_t : char
{
N = 'N',
S = 'S',
E = 'E',
W = 'W',
};
#endif //_BASETYPES_H_