#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_