/* * Direction.h * * Created on: Nov 27, 2016 * Author: tibi */ #ifndef MODEL_DIRECTION_H_ #define MODEL_DIRECTION_H_ namespace farmlands { namespace model { enum Direction { East = 0, NorthEast = 1, North = 2, NorthWest = 3, West = 4, SouthWest = 5, South = 6, SouthEast = 7 }; } } #endif /* MODEL_DIRECTION_H_ */