Implemented main menu and buttons
This commit is contained in:
@@ -4,11 +4,14 @@
|
||||
#include "scene_list.hpp"
|
||||
#include "base_scene.hpp"
|
||||
|
||||
#include "singleton.hpp"
|
||||
#include "config_utility.hpp"
|
||||
|
||||
#include "SDL/SDL.h"
|
||||
|
||||
class SceneManager {
|
||||
public:
|
||||
/* Public access members */
|
||||
//Public access members
|
||||
SceneManager();
|
||||
~SceneManager();
|
||||
|
||||
@@ -17,11 +20,13 @@ public:
|
||||
void Quit();
|
||||
|
||||
private:
|
||||
/* Private access members */
|
||||
//Private access members
|
||||
void LoadScene(SceneList sceneIndex);
|
||||
void UnloadScene();
|
||||
|
||||
BaseScene* activeScene;
|
||||
|
||||
ConfigUtility* configUtil;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user