Changeset 1647 for code/branches/gui/src/orxonox
- Timestamp:
- Jul 27, 2008, 12:34:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/orxonox/gui/GUIManager.h
r1646 r1647 73 73 74 74 bool initialise(); 75 void tick(float dt); 75 void tick(float dt) 76 { 77 assert(guiSystem_); 78 guiSystem_->injectTimePulse(dt); 79 } 76 80 void showGUI(const std::string& name, Ogre::SceneManager* sceneManager);// bool showBackground); // tolua_export 77 81 void _hideGUI(); // tolua_export … … 131 135 static GUIManager* singletonRef_s; 132 136 }; // tolua_export 133 134 inline void GUIManager::tick(float dt)135 {136 assert(guiSystem_);137 guiSystem_->injectTimePulse(dt);138 }139 137 } // tolua_export 140 138
Note: See TracChangeset
for help on using the changeset viewer.