├── .gitignore ├── LuaScript.cpp ├── LuaScript.h ├── Player.lua ├── README.md └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.d 2 | *.o 3 | Makefile -------------------------------------------------------------------------------- /LuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/unnamed_lua_binder/HEAD/LuaScript.cpp -------------------------------------------------------------------------------- /LuaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/unnamed_lua_binder/HEAD/LuaScript.h -------------------------------------------------------------------------------- /Player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/unnamed_lua_binder/HEAD/Player.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/unnamed_lua_binder/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasdaler/unnamed_lua_binder/HEAD/main.cpp --------------------------------------------------------------------------------