Started rewriting

This commit is contained in:
2016-05-17 15:31:49 +02:00
parent 5df4a1d8d0
commit 876ec56780
29 changed files with 884 additions and 79 deletions
+9
View File
@@ -1,10 +1,19 @@
#pragma once
#include "Header.h"
#include "State.h"
class StateHandler
{
public:
enum EState { INIT_STATE = 0, LOADING_STATE = 1, MENU_STATE = 2, SETTINGS_STATE = 3, WORLD_STATE = 4 };
StateHandler();
~StateHandler();
void Navigate(EState state);
State* GetCurrentState();
private:
EState CurrentState;
vector<State*> StateList;
};