Changeset 6799 in orxonox.OLD for trunk/src/world_entities/space_ships/hover.h
- Timestamp:
- Jan 27, 2006, 4:16:02 PM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/hover.h
r6780 r6799 1 1 2 2 /*! 3 * @file h elicopter.h4 * Implements the Control of a H elicopter3 * @file hover.h 4 * Implements the Control of a Hover 5 5 */ 6 6 7 #ifndef _H ELICOPTER_H8 #define _H ELICOPTER_H7 #ifndef _HOVER_H 8 #define _HOVER_H 9 9 10 10 #include "playable.h" 11 11 12 12 13 class H elicopter : public Playable13 class Hover : public Playable 14 14 { 15 15 16 16 public: 17 17 18 H elicopter();19 H elicopter(const char* fileName);20 H elicopter(const TiXmlElement* root);21 virtual ~H elicopter();18 Hover(); 19 Hover(const char* fileName); 20 Hover(const TiXmlElement* root); 21 virtual ~Hover(); 22 22 23 23 void init(); … … 63 63 int controlVelocityY; 64 64 //float cycle; //!< hovercycle 65 65 66 66 PNode topRotor; 67 67 PNode tailRotor; 68 68 69 69 PNode cameraNode; 70 70 … … 80 80 }; 81 81 82 #endif /* _H ELICOPTERS_H */82 #endif /* _HOVERS_H */
Note: See TracChangeset
for help on using the changeset viewer.