Changeset 10708 for code/branches/hoverHS15/src
- Timestamp:
- Oct 26, 2015, 4:07:58 PM (9 years ago)
- Location:
- code/branches/hoverHS15/src/modules/hover
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hoverHS15/src/modules/hover/CMakeLists.txt
r10658 r10708 2 2 Hover.cc 3 3 HoverShip.cc 4 HoverWall.cc 4 5 ) 5 6 … … 8 9 FIND_HEADER_FILES 9 10 LINK_LIBRARIES 11 objects 10 12 orxonox 11 13 overlays -
code/branches/hoverHS15/src/modules/hover/Hover.cc
r10664 r10708 34 34 //#include "orxonox/worldentities/pawns/SpaceShip.h" 35 35 #include "Hover.h" 36 //#include "HoverShip.h" // Necessary for getPlayer function. Do NOT include this in Header! 36 37 #include "HoverWall.h" 37 38 #include "core/CoreIncludes.h" 38 39 … … 43 44 Hover::Hover(Context* context) : Gametype(context) 44 45 { 46 45 47 RegisterObject(Hover); 46 48 new HoverWall(context); 47 49 //this->setHUDTemplate("HoverHUD"); 48 50 } … … 52 54 void Hover::tick(float dt) 53 55 { 54 55 56 SUPER(Hover, tick, dt); 56 57 } … … 61 62 { 62 63 63 64 64 // Call start for the parent class. 65 65 Gametype::start(); 66 66 67 } 67 68 -
code/branches/hoverHS15/src/modules/hover/HoverPrereqs.h
r10664 r10708 70 70 class Hover; 71 71 class HoverShip; 72 class HoverWall; 72 73 } 73 74
Note: See TracChangeset
for help on using the changeset viewer.