YAPOG  0.0.1
Yet Another Pokemon Online Game
Direction.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DIRECTION_HPP
2 # define YAPOG_DIRECTION_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  enum class YAPOG_LIB Direction : uchar
10  {
11  North = 0,
12  NorthEast = 1,
13  East = 2,
14  SouthEast = 3,
15  South = 4,
16  SouthWest = 5,
17  West = 6,
19  };
20 } // namespace yap
21 
22 #endif // YAPOG_DIRECTION_HPP