Changeset 10835 for code/branches/hoverHS15/src/modules/hover/Hover.h
- Timestamp:
- Nov 23, 2015, 3:32:48 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hoverHS15/src/modules/hover/Hover.h
r10751 r10835 58 58 #include "tools/Timer.h" 59 59 60 61 60 62 namespace orxonox 61 63 { 64 65 enum eDirection 66 { 67 eDirection_Invalid = 0, 68 eDirection_Up = 1, 69 eDirection_Right = 2, 70 eDirection_Down = 4, 71 eDirection_Left = 8 72 }; 62 73 63 74 class _HoverExport Hover : public Gametype … … 80 91 WeakPtr<HoverOrigin> origin_; 81 92 93 private: 94 int CellIdx(); 95 int RandomInt(); 96 int RandomInt4(); 97 98 99 bool IsDirValid( eDirection Dir ); 100 eDirection GetDirection(); 101 void GenerateMaze(); 102 void RenderMaze(); 103 void MazeOut(); 104 void LevelOut(); 105 106 82 107 }; 83 108 }
Note: See TracChangeset
for help on using the changeset viewer.