blob: 914335f2f96eca978da046cdbd6ae39073fa3f87 (
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
|
#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
|