|
From: <sik...@us...> - 2006-05-18 06:56:52
|
Revision: 26 Author: sik0fewl Date: 2006-05-17 23:56:47 -0700 (Wed, 17 May 2006) ViewCVS: http://svn.sourceforge.net/perceptioncrash/?rev=26&view=rev Log Message: ----------- Replace tabs with spaces Modified Paths: -------------- trunk/perceptioncrash/src/IntroState.hpp Modified: trunk/perceptioncrash/src/IntroState.hpp =================================================================== --- trunk/perceptioncrash/src/IntroState.hpp 2006-05-18 06:48:18 UTC (rev 25) +++ trunk/perceptioncrash/src/IntroState.hpp 2006-05-18 06:56:47 UTC (rev 26) @@ -8,38 +8,38 @@ class IntroState : public GameState { public: - void enter(); - void exit(); + void enter(); + void exit(); - void pause(); - void resume(); + void pause(); + void resume(); - void keyClicked(Ogre::KeyEvent* e); - void keyPressed(Ogre::KeyEvent* e); - void keyReleased(Ogre::KeyEvent* e); - bool frameStarted(const Ogre::FrameEvent& evt); - bool frameEnded(const Ogre::FrameEvent& evt); + void keyClicked(Ogre::KeyEvent* e); + void keyPressed(Ogre::KeyEvent* e); + void keyReleased(Ogre::KeyEvent* e); + bool frameStarted(const Ogre::FrameEvent& evt); + bool frameEnded(const Ogre::FrameEvent& evt); - static IntroState* getInstance() + static IntroState* getInstance() { return &mIntroState; } protected: - IntroState() { } + IntroState() { } - Ogre::Root *mRoot; - Ogre::SceneManager* mSceneMgr; - Ogre::Viewport* mViewport; - Ogre::InputReader* mInputDevice; - Ogre::Camera* mCamera; + Ogre::Root *mRoot; + Ogre::SceneManager* mSceneMgr; + Ogre::Viewport* mViewport; + Ogre::InputReader* mInputDevice; + Ogre::Camera* mCamera; - // This is temporary and should probably be replaced with some CEGUI stuff - // It currently just shows the Core/DebugOverlay overlay - Ogre::Overlay* mLogoOverlay; + // This is temporary and should probably be replaced with some CEGUI stuff + // It currently just shows the Core/DebugOverlay overlay + Ogre::Overlay* mLogoOverlay; - bool mExitGame; + bool mExitGame; private: - static IntroState mIntroState; + static IntroState mIntroState; }; #endif /*PC_INTRO_STATE*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |