Changeset 4836 in orxonox.OLD for orxonox/trunk/src/util/track/track_manager.h
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/track/track_manager.h
r4834 r4836 1 1 /*! 2 2 \file track_manager.h 3 \briefmanages all tracks defined in the world and the path the player takes3 * manages all tracks defined in the world and the path the player takes 4 4 5 5 it is a container for all tracks and all track-nodes. it manages the movement of … … 136 136 public: 137 137 virtual ~TrackManager(); 138 /** \returns a Pointer to the only object of this Class */138 /** @returns a Pointer to the only object of this Class */ 139 139 inline static TrackManager* getInstance() { if (!singletonRef) singletonRef = new TrackManager(); return singletonRef; }; 140 140 … … 145 145 void workOnS(const char* trackName); 146 146 147 /** \see setCurveType(CurveType curveType, TrackElement* trackElem); \param curveType the type of the Curve */147 /** \see setCurveType(CurveType curveType, TrackElement* trackElem); @param curveType the type of the Curve */ 148 148 inline void setCurveType(CurveType curveType) { this->setCurveType (curveType, this->currentTrackElem);}; 149 149 void setCurveType(CurveType curveType, TrackElement* trackElem);
Note: See TracChangeset
for help on using the changeset viewer.