farmlands/src/model/Direction.h

29 lines
301 B
C++

/*
* Direction.h
*
* Created on: Nov 27, 2016
* Author: tibi
*/
#ifndef MODEL_DIRECTION_H_
#define MODEL_DIRECTION_H_
namespace farmlands {
namespace model {
enum Direction
{
None = 0,
East = 0,
North = 90,
West = 180,
South = 270
};
}
}
#endif /* MODEL_DIRECTION_H_ */