Changeset 9755 in orxonox.OLD for branches/new_class_id/src/util/track
- Timestamp:
- Sep 17, 2006, 11:33:22 PM (18 years ago)
- Location:
- branches/new_class_id/src/util/track
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/util/track/track_node.cc
r9406 r9755 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 -
branches/new_class_id/src/util/track/track_node.h
r5405 r9755 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.