aboutsummaryrefslogtreecommitdiff
path: root/src/client/menuhandeler.hpp
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-11-01 00:28:16 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-11-01 00:28:16 -0400
commitd2b36e6c65ec8126c0ebc96adb7e011e78a5eacc (patch)
tree9e005502ea2c125c90b5011f573f381f84ade0ef /src/client/menuhandeler.hpp
downloadbrokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.tar.gz
brokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.tar.bz2
brokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.zip
Initial commit
Diffstat (limited to 'src/client/menuhandeler.hpp')
-rw-r--r--src/client/menuhandeler.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/client/menuhandeler.hpp b/src/client/menuhandeler.hpp
new file mode 100644
index 0000000..914335f
--- /dev/null
+++ b/src/client/menuhandeler.hpp
@@ -0,0 +1,27 @@
+#ifndef __H_BE_menuhandeler
+#define __H_BE_menuhandeler
+extern "C" {
+ #include <lua.h>
+ #include <lauxlib.h>
+ #include <lualib.h>
+}
+#include <irrlicht.h>
+
+#include "initdevice.hpp"
+
+using namespace irr;
+using namespace core;
+using namespace scene;
+using namespace video;
+using namespace io;
+using namespace gui;
+
+void loadMenu(const char* name, IrrlichtDevice* device);
+
+void showMenu(const char* name, IrrlichtDevice* device);
+
+void hideMenu(const char* name, IrrlichtDevice* device);
+
+void dropMenu(const char* name, IrrlichtDevice* device);
+
+#endif