├── .gitignore ├── .travis.yml ├── LICENSE ├── LuaScript.gdnlib ├── LuaScript.gdns ├── README.md ├── SConstruct ├── docker └── Dockerfile-base-1804-master ├── library.cpp ├── lua.cpp ├── lua.hpp └── scripts └── travis ├── build.sh ├── install.sh └── script.sh /.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | luasrc/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaScript.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/LuaScript.gdnlib -------------------------------------------------------------------------------- /LuaScript.gdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/LuaScript.gdns -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/SConstruct -------------------------------------------------------------------------------- /docker/Dockerfile-base-1804-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/docker/Dockerfile-base-1804-master -------------------------------------------------------------------------------- /library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/library.cpp -------------------------------------------------------------------------------- /lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/lua.cpp -------------------------------------------------------------------------------- /lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/lua.hpp -------------------------------------------------------------------------------- /scripts/travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/scripts/travis/build.sh -------------------------------------------------------------------------------- /scripts/travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/scripts/travis/install.sh -------------------------------------------------------------------------------- /scripts/travis/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesnoth/jessene/HEAD/scripts/travis/script.sh --------------------------------------------------------------------------------