diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-11-01 00:28:16 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-11-01 00:28:16 -0400 |
| commit | d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc (patch) | |
| tree | 9e005502ea2c125c90b5011f573f381f84ade0ef /src/client/initdevice.hpp | |
| download | brokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.tar.gz brokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.tar.bz2 brokengine-d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc.zip | |
Initial commit
Diffstat (limited to 'src/client/initdevice.hpp')
| -rw-r--r-- | src/client/initdevice.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/client/initdevice.hpp b/src/client/initdevice.hpp new file mode 100644 index 0000000..dd328f7 --- /dev/null +++ b/src/client/initdevice.hpp @@ -0,0 +1,17 @@ +#ifndef __H_BE_initdevice +#define __H_BE_initdevice +#include <irrlicht.h> +extern "C" { + #include <lua.h> + #include <lauxlib.h> + #include <lualib.h> +} +using namespace irr; +using namespace core; +using namespace scene; +using namespace video; +using namespace io; +using namespace gui; + +IrrlichtDevice* spawnIrrDevice(lua_State* L); +#endif |
