Changeset 79 for code/branches/mainloop/src
- Timestamp:
- Oct 22, 2007, 12:34:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/mainloop/src/orxonox.cc
r78 r79 26 26 */ 27 27 28 // TODO: Change this to orxonox.h and include all necessary functions there 28 29 #include "ExampleApplication.h" 29 30 31 // TODO: Put creation of SceneNode and implementation of FrameListener into an extern file 30 32 SceneNode *lightNode; 31 33 32 class TutorialFrameListener : public ExampleFrameListener34 class FrameListener : public ExampleFrameListener 33 35 { 34 36 public: 35 TutorialFrameListener(RenderWindow* win, Camera* cam, SceneManager *sceneMgr)37 FrameListener(RenderWindow* win, Camera* cam, SceneManager *sceneMgr) 36 38 : ExampleFrameListener(win, cam, false, false) 37 39 { … … 49 51 }; 50 52 53 // TODO: Make Doxygen tags work and create scene AFTER loading in an extern file 51 54 //! This is the application class of Orxonox 52 55 /** 53 56 Application class. The starting point of Orxonox. 54 Loading of ressources s tartsin here.57 Loading of ressources should start in here. 55 58 ... 56 59 */
Note: See TracChangeset
for help on using the changeset viewer.