aboutsummaryrefslogtreecommitdiff
path: root/src/client/menuhandeler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/menuhandeler.cpp')
-rw-r--r--src/client/menuhandeler.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/client/menuhandeler.cpp b/src/client/menuhandeler.cpp
new file mode 100644
index 0000000..830c695
--- /dev/null
+++ b/src/client/menuhandeler.cpp
@@ -0,0 +1,31 @@
+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){
+
+}