aboutsummaryrefslogtreecommitdiff
path: root/src/ui/menus.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2015-10-02 23:48:34 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2015-10-02 23:48:34 +0800
commitb9d4b60486e224261990c0732852513e86dd94ff (patch)
tree9f9dd20a888875833af11dc7a67b849a74825b5b /src/ui/menus.hpp
parentabffe5f72dfb39da8d480ce3c4b546404684a060 (diff)
downloadbullet-lab-remix-b9d4b60486e224261990c0732852513e86dd94ff.tar.xz
Add BLR3 files. Modify Readme.
Currently BLR3 is VERY primitive!!
Diffstat (limited to 'src/ui/menus.hpp')
-rw-r--r--src/ui/menus.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/menus.hpp b/src/ui/menus.hpp
new file mode 100644
index 0000000..780a3a6
--- /dev/null
+++ b/src/ui/menus.hpp
@@ -0,0 +1,16 @@
+#include "../master/master.hpp"
+#include "menuframework/menuframework.hpp"
+extern smAnmFile menubg;
+extern smEntity2D *menubEnt;
+class mainMenuScene:public scenePrototype
+{
+private:
+ menuLCD *menu;
+ static SMELT* sm;
+public:
+ mainMenuScene();
+ ~mainMenuScene();
+ bool sceneUpdate()override;
+ bool sceneRender()override;
+};
+extern mainMenuScene *mainMenuScn;