aboutsummaryrefslogtreecommitdiff
path: root/src/client/menuhandeler.cpp
blob: 53d38ccf00fadffe3ee8e0dc315655061f27cc5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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){
	IGUIEnvironment* env = device->getGUIEnvironment();
	IGUIWindow* window = env->addWindow(rect<s32>(0,0,200,200),true,L"Menu",0,-1);
}

void showMenu(const char* name, IrrlichtDevice* device){

}

void hideMenu(const char* name, IrrlichtDevice* device){

}

void dropMenu(const char* name, IrrlichtDevice* device){

}