1234567891011121314151617181920212223242526272829 |
- #ifndef TINYSHOOTER_GAMECORE_H
- #define TINYSHOOTER_GAMECORE_H
- #include "Control/Input.h"
- #include "Graphics/Renderer.h"
- #include "Graphics/MetaField.h"
- class GameCore {
- public :
- GameCore();
- virtual ~GameCore();
- bool initialize();
- void start();
- protected:
- Input *m_input;
- Renderer *m_rend;
- };
- #endif
|