LPCGame
A Simple 2d Game Engine
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
menustate.h
1 #ifndef MENUSTATE_H
2 #define MENUSTATE_H
3 
4 #include "external/json/json.h"
5 #include "state.h"
6 
8 
11 class MenuState : public State{
12 public:
17  std::string Run();
24  Json::Value Save();
31  void Load(Json::Value val);
32 
33 protected:
40  //void RenderThread();
46  //void PhysicsThread();
48  void Init();
50  void Free();
51 };
52 
53 #endif