forked from sanine/honey-core
honey lua interpreter (fork)
demo | ||
doc | ||
libs | ||
src | ||
util | ||
.gitignore | ||
CMakeLists.txt | ||
CMakeSettings.json | ||
design.md | ||
LICENSE.md | ||
README.md |
honey core
A lua interpreter providing low-level bindings to make 3d games!
building
The honey core requires
- OpenGL 4.1+
- CMake
and as far as I am aware... that's it.
To build:
mkdir build
cd build
cmake ..
make
layout
demo/
- contains sample lua code that can be run with the interpreterdoc/
- will contain documentationlibs/
- contains 3rd-party libraries used by the interpretersrc/
- contains the main source code for the honey coreutil/
- contains utility scripts useful in the development process