Changeset 6512 in orxonox.OLD for trunk/src/util
- Timestamp:
- Jan 17, 2006, 10:01:07 PM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/hud.cc
r6498 r6512 55 55 void Hud::loadParams(const TiXmlElement* root) 56 56 { 57 Element2D::loadParams(root); 57 58 } 58 59 -
trunk/src/util/hud.h
r6443 r6512 23 23 24 24 25 v oid loadParams(const TiXmlElement* root);25 virtual void loadParams(const TiXmlElement* root); 26 26 27 27 void setBackGround(); -
trunk/src/util/track/track_manager.cc
r5944 r6512 394 394 * @param root the TiXmlElement to load the Data from 395 395 */ 396 boolTrackManager::loadParams(const TiXmlElement* root)396 void TrackManager::loadParams(const TiXmlElement* root) 397 397 { 398 398 double x, y, z, d; -
trunk/src/util/track/track_manager.h
r5313 r6512 139 139 inline static TrackManager* getInstance() { if (!singletonRef) singletonRef = new TrackManager(); return singletonRef; }; 140 140 141 boolloadParams(const TiXmlElement* root);141 virtual void loadParams(const TiXmlElement* root); 142 142 143 143 // Methods to change the Path (initialisation)
Note: See TracChangeset
for help on using the changeset viewer.