├── .clang-format ├── .clang-tidy ├── .github ├── CODEOWNERS ├── DocumentationImages │ ├── exportwin.png │ └── projexpmenu.png ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── LuaAPI.png ├── luaAPI_icon.png └── workflows │ ├── android-build.yml │ ├── android-package.yml │ ├── gdextension-unit-tests.yml │ ├── gdextension.yml │ ├── ios-build.yml │ ├── ios-package.yml │ ├── linux.yml │ ├── macos-build.yml │ ├── macos-package.yml │ ├── module-unit-tests.yml │ ├── runner.yml │ ├── static-checks.yml │ ├── web.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── DOTNET.md ├── EXPORT.md ├── LICENSE ├── README.md ├── SConstruct ├── SCsub ├── config.py ├── doc_classes ├── LuaAPI.xml ├── LuaCallableExtra.xml ├── LuaCoroutine.xml ├── LuaDefaultObjectMetatable.xml ├── LuaError.xml ├── LuaFunctionRef.xml ├── LuaObjectMetatable.xml └── LuaTuple.xml ├── external ├── SConscript ├── SCsub └── build_luajit.py ├── lua_libraries ├── .gitignore ├── README.md ├── SConscript ├── SCsub ├── codegen.py └── lua_libraries.h ├── project ├── .gitattributes ├── .gitignore ├── addons │ └── luaAPI │ │ ├── bin │ │ └── .gdignore │ │ └── luaAPI.gdextension ├── demo │ ├── HelloLua.gd │ └── HelloLua.tscn ├── project.godot └── testing │ ├── luasrc │ ├── .gdignore │ └── LuaAPI │ │ └── do_file.lua │ ├── run_tests.gd │ ├── run_tests.tscn │ ├── tests │ ├── LuaAPI.call_function.gd │ ├── LuaAPI.expose_constructor.gd │ ├── LuaAPI.expose_function.gd │ ├── LuaCoroutine.resume.gd │ ├── LuaCoroutine.yield_await.gd │ ├── general.base_types.gd │ ├── general.object_metamethods.gd │ ├── general.object_push.gd │ ├── luaAPI.do_file.gd │ ├── luaAPI.do_string.gd │ ├── luaAPI.pull_variant.gd │ └── luaAPI.push_variant.gd │ └── unit_test.gd ├── register_types.cpp ├── register_types.h ├── scripts ├── SConstruct ├── clang_format.sh ├── codespell.sh ├── file_format.sh ├── install_vulkan_sdk_macos.sh └── mono_instructions.txt └── src ├── classes ├── luaAPI.cpp ├── luaAPI.h ├── luaCallable.cpp ├── luaCallable.h ├── luaCallableExtra.cpp ├── luaCallableExtra.h ├── luaCoroutine.cpp ├── luaCoroutine.h ├── luaError.cpp ├── luaError.h ├── luaFunctionRef.cpp ├── luaFunctionRef.h ├── luaObjectMetatable.cpp ├── luaObjectMetatable.h ├── luaTuple.cpp └── luaTuple.h ├── lua └── lua.hpp ├── luaState.cpp ├── luaState.h ├── metatables.cpp └── util.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default code owner 2 | * @trey2k 3 | -------------------------------------------------------------------------------- /.github/DocumentationImages/exportwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/DocumentationImages/exportwin.png -------------------------------------------------------------------------------- /.github/DocumentationImages/projexpmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/DocumentationImages/projexpmenu.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/LuaAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/LuaAPI.png -------------------------------------------------------------------------------- /.github/luaAPI_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/luaAPI_icon.png -------------------------------------------------------------------------------- /.github/workflows/android-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/android-build.yml -------------------------------------------------------------------------------- /.github/workflows/android-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/android-package.yml -------------------------------------------------------------------------------- /.github/workflows/gdextension-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/gdextension-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/gdextension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/gdextension.yml -------------------------------------------------------------------------------- /.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /.github/workflows/ios-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/ios-package.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/macos-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/macos-package.yml -------------------------------------------------------------------------------- /.github/workflows/module-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/module-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/runner.yml -------------------------------------------------------------------------------- /.github/workflows/static-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/static-checks.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /DOTNET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/DOTNET.md -------------------------------------------------------------------------------- /EXPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/EXPORT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/SConstruct -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/config.py -------------------------------------------------------------------------------- /doc_classes/LuaAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaAPI.xml -------------------------------------------------------------------------------- /doc_classes/LuaCallableExtra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaCallableExtra.xml -------------------------------------------------------------------------------- /doc_classes/LuaCoroutine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaCoroutine.xml -------------------------------------------------------------------------------- /doc_classes/LuaDefaultObjectMetatable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaDefaultObjectMetatable.xml -------------------------------------------------------------------------------- /doc_classes/LuaError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaError.xml -------------------------------------------------------------------------------- /doc_classes/LuaFunctionRef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaFunctionRef.xml -------------------------------------------------------------------------------- /doc_classes/LuaObjectMetatable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaObjectMetatable.xml -------------------------------------------------------------------------------- /doc_classes/LuaTuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/doc_classes/LuaTuple.xml -------------------------------------------------------------------------------- /external/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/external/SConscript -------------------------------------------------------------------------------- /external/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/external/SCsub -------------------------------------------------------------------------------- /external/build_luajit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/external/build_luajit.py -------------------------------------------------------------------------------- /lua_libraries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/.gitignore -------------------------------------------------------------------------------- /lua_libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/README.md -------------------------------------------------------------------------------- /lua_libraries/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/SConscript -------------------------------------------------------------------------------- /lua_libraries/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/SCsub -------------------------------------------------------------------------------- /lua_libraries/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/codegen.py -------------------------------------------------------------------------------- /lua_libraries/lua_libraries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/lua_libraries/lua_libraries.h -------------------------------------------------------------------------------- /project/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/.gitattributes -------------------------------------------------------------------------------- /project/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt* 2 | -------------------------------------------------------------------------------- /project/addons/luaAPI/bin/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/addons/luaAPI/luaAPI.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/addons/luaAPI/luaAPI.gdextension -------------------------------------------------------------------------------- /project/demo/HelloLua.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/demo/HelloLua.gd -------------------------------------------------------------------------------- /project/demo/HelloLua.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/demo/HelloLua.tscn -------------------------------------------------------------------------------- /project/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/project.godot -------------------------------------------------------------------------------- /project/testing/luasrc/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/testing/luasrc/LuaAPI/do_file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/luasrc/LuaAPI/do_file.lua -------------------------------------------------------------------------------- /project/testing/run_tests.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/run_tests.gd -------------------------------------------------------------------------------- /project/testing/run_tests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/run_tests.tscn -------------------------------------------------------------------------------- /project/testing/tests/LuaAPI.call_function.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/LuaAPI.call_function.gd -------------------------------------------------------------------------------- /project/testing/tests/LuaAPI.expose_constructor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/LuaAPI.expose_constructor.gd -------------------------------------------------------------------------------- /project/testing/tests/LuaAPI.expose_function.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/LuaAPI.expose_function.gd -------------------------------------------------------------------------------- /project/testing/tests/LuaCoroutine.resume.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/LuaCoroutine.resume.gd -------------------------------------------------------------------------------- /project/testing/tests/LuaCoroutine.yield_await.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/LuaCoroutine.yield_await.gd -------------------------------------------------------------------------------- /project/testing/tests/general.base_types.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/general.base_types.gd -------------------------------------------------------------------------------- /project/testing/tests/general.object_metamethods.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/general.object_metamethods.gd -------------------------------------------------------------------------------- /project/testing/tests/general.object_push.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/general.object_push.gd -------------------------------------------------------------------------------- /project/testing/tests/luaAPI.do_file.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/luaAPI.do_file.gd -------------------------------------------------------------------------------- /project/testing/tests/luaAPI.do_string.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/luaAPI.do_string.gd -------------------------------------------------------------------------------- /project/testing/tests/luaAPI.pull_variant.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/luaAPI.pull_variant.gd -------------------------------------------------------------------------------- /project/testing/tests/luaAPI.push_variant.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/tests/luaAPI.push_variant.gd -------------------------------------------------------------------------------- /project/testing/unit_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/project/testing/unit_test.gd -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/register_types.h -------------------------------------------------------------------------------- /scripts/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/SConstruct -------------------------------------------------------------------------------- /scripts/clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/clang_format.sh -------------------------------------------------------------------------------- /scripts/codespell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/codespell.sh -------------------------------------------------------------------------------- /scripts/file_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/file_format.sh -------------------------------------------------------------------------------- /scripts/install_vulkan_sdk_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/install_vulkan_sdk_macos.sh -------------------------------------------------------------------------------- /scripts/mono_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/scripts/mono_instructions.txt -------------------------------------------------------------------------------- /src/classes/luaAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaAPI.cpp -------------------------------------------------------------------------------- /src/classes/luaAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaAPI.h -------------------------------------------------------------------------------- /src/classes/luaCallable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCallable.cpp -------------------------------------------------------------------------------- /src/classes/luaCallable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCallable.h -------------------------------------------------------------------------------- /src/classes/luaCallableExtra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCallableExtra.cpp -------------------------------------------------------------------------------- /src/classes/luaCallableExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCallableExtra.h -------------------------------------------------------------------------------- /src/classes/luaCoroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCoroutine.cpp -------------------------------------------------------------------------------- /src/classes/luaCoroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaCoroutine.h -------------------------------------------------------------------------------- /src/classes/luaError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaError.cpp -------------------------------------------------------------------------------- /src/classes/luaError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaError.h -------------------------------------------------------------------------------- /src/classes/luaFunctionRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaFunctionRef.cpp -------------------------------------------------------------------------------- /src/classes/luaFunctionRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaFunctionRef.h -------------------------------------------------------------------------------- /src/classes/luaObjectMetatable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaObjectMetatable.cpp -------------------------------------------------------------------------------- /src/classes/luaObjectMetatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaObjectMetatable.h -------------------------------------------------------------------------------- /src/classes/luaTuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaTuple.cpp -------------------------------------------------------------------------------- /src/classes/luaTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/classes/luaTuple.h -------------------------------------------------------------------------------- /src/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/lua/lua.hpp -------------------------------------------------------------------------------- /src/luaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/luaState.cpp -------------------------------------------------------------------------------- /src/luaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/luaState.h -------------------------------------------------------------------------------- /src/metatables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/metatables.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeaselGames/godot_luaAPI/HEAD/src/util.h --------------------------------------------------------------------------------