Changeset 9869 in orxonox.OLD for trunk/src/util/track
- Timestamp:
- Oct 3, 2006, 12:19:30 AM (18 years ago)
- Location:
- trunk/src/util/track
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/track/pilot_node.cc
r7868 r9869 24 24 25 25 26 ObjectListDefinition(PilotNode); 26 27 /** 27 28 * standard constructor … … 29 30 PilotNode::PilotNode () 30 31 { 31 this->setClassID(CL_PILOT_PARENT, "PilotNode");32 this->registerObject(this, PilotNode::_objectList); 32 33 this->setName("PilotNode"); 33 34 -
trunk/src/util/track/pilot_node.h
r5039 r9869 15 15 //! The PilotNode is a node that enables the is driven by the Mouse 16 16 class PilotNode : public WorldEntity, public EventListener { 17 ObjectListDeclaration(PilotNode); 17 18 18 19 public: -
trunk/src/util/track/track_node.cc
r9406 r9869 22 22 23 23 24 24 ObjectListDefinition(TracNode); 25 25 /** 26 26 * standard constructor … … 28 28 TrackNode::TrackNode () 29 29 { 30 this-> setClassID(CL_TRACK_NODE, "TrackNode");30 this->registerObject(this, TracNode::_objectList); 31 31 this->setName("TrackNode"); 32 32 -
trunk/src/util/track/track_node.h
r5405 r9869 1 /*! 1 /*! 2 2 * @file track_node.h 3 3 * Definition of the TrackNode are located here 4 5 the TrackNode is the node, that follows the Track (and the TrackManager) 4 5 the TrackNode is the node, that follows the Track (and the TrackManager) 6 6 through the level. 7 Under normal confitions the Plyaer(s) are 7 Under normal confitions the Plyaer(s) are 8 8 */ 9 9 … … 18 18 19 19 //! A node that follows the track. 20 class TrackNode : public PNode 20 class TrackNode : public PNode 21 21 { 22 22 ObjectListDeclaratrion(TracNode); 23 23 public: 24 24 TrackNode ();
Note: See TracChangeset
for help on using the changeset viewer.