| 12345678910111213141516171819202122232425262728293031 |
- #pragma once
- #include <memory>
- namespace Ogre
- {
- class RenderWindow;
- class Viewport;
- class Camera;
- }
- namespace CamelotEngine
- {
- class Application
- {
- public:
- Application();
- void startUp();
- void shutDown();
- void DBG_renderSimpleFrame();
- private:
- Ogre::RenderWindow* mRenderWindow;
- Ogre::Viewport* mViewport;
- Ogre::Camera* mCamera;
- };
- Application& gApplication();
- }
|