diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-04-10 19:55:02 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-04-10 19:55:02 -0400 |
| commit | bced528a07a2ff1591455e4c4228ec18f8e0532d (patch) | |
| tree | 7686a11b6276f56eabde0bffb8716a7b1df72e29 /src/client/lua_api/scene/imesh.hpp | |
| parent | d2b36e6c65ec8126c0ebc96adb7e011e78a5eacc (diff) | |
| download | brokengine-bced528a07a2ff1591455e4c4228ec18f8e0532d.tar.gz brokengine-bced528a07a2ff1591455e4c4228ec18f8e0532d.tar.bz2 brokengine-bced528a07a2ff1591455e4c4228ec18f8e0532d.zip | |
Added getpos and setpos functions for scene nodes
Diffstat (limited to 'src/client/lua_api/scene/imesh.hpp')
| -rw-r--r-- | src/client/lua_api/scene/imesh.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/client/lua_api/scene/imesh.hpp b/src/client/lua_api/scene/imesh.hpp new file mode 100644 index 0000000..bd33c07 --- /dev/null +++ b/src/client/lua_api/scene/imesh.hpp @@ -0,0 +1,11 @@ + +#include <stdio.h> +#include <stdlib.h> +extern "C" { + #include <lua.h> + #include <lauxlib.h> + #include <lualib.h> +} +#include <irrlicht.h> + +int imesh_register(lua_State* L, irr::IrrlichtDevice* d); |
