Changeset 5996 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Dec 9, 2005, 12:31:01 PM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/space_ship.h
r5978 r5996 1 1 2 /*! 2 3 * @file space_ship.h … … 57 58 bool bRollL; //!< rolling button pressed (left) 58 59 bool bRollR; //!< rolling button pressed (right) 59 60 60 61 float xMouse; //!< mouse moved in x-Direction 61 62 float yMouse; //!< mouse moved in y-Direction -
trunk/src/world_entities/world_entity.cc
r5995 r5996 41 41 */ 42 42 WorldEntity::WorldEntity(const TiXmlElement* root) 43 : Synchronizeable() 43 44 { 44 45 this->setClassID(CL_WORLD_ENTITY, "WorldEntity"); -
trunk/src/world_entities/world_entity.h
r5995 r5996 8 8 9 9 #include "p_node.h" 10 #include "synchronizeable.h" 11 #include "model.h" 10 12 11 13 #include "glincl.h" … … 22 24 23 25 //! Basis-class all interactive stuff in the world is derived from 24 class WorldEntity : public PNode 26 class WorldEntity : public PNode, public Synchronizeable 25 27 { 26 28 public:
Note: See TracChangeset
for help on using the changeset viewer.