diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-07-04 15:15:48 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-07-04 15:15:48 -0400 |
| commit | b98dbac4ed2f755ce71bd9be17f26a3f86c1e3cc (patch) | |
| tree | c9d7755ca9a308706c4dc1b6fd1eaa690d8ec46e /src/client/lua_api/load_phys.hpp | |
| parent | bced528a07a2ff1591455e4c4228ec18f8e0532d (diff) | |
| download | brokengine-b98dbac4ed2f755ce71bd9be17f26a3f86c1e3cc.tar.gz brokengine-b98dbac4ed2f755ce71bd9be17f26a3f86c1e3cc.tar.bz2 brokengine-b98dbac4ed2f755ce71bd9be17f26a3f86c1e3cc.zip | |
Lots of changes
* client no longer crashes when closed
* started work on adding physics types
* some bugfixes to core lua api
Diffstat (limited to 'src/client/lua_api/load_phys.hpp')
| -rw-r--r-- | src/client/lua_api/load_phys.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/client/lua_api/load_phys.hpp b/src/client/lua_api/load_phys.hpp new file mode 100644 index 0000000..7ee07fe --- /dev/null +++ b/src/client/lua_api/load_phys.hpp @@ -0,0 +1,14 @@ +#ifndef __H_loadphys +#define __H_loadphys +#include <stdio.h> +#include <stdlib.h> +#include <vector> +extern "C" { + #include <lua.h> + #include <lauxlib.h> + #include <lualib.h> +} +#include <irrlicht.h> + +void load_physfuncs(lua_State* L); +#endif |
