The whole engine is split into different, swappable modules, which are libraries (.dll/.so) loaded at runtime by the core executable.
Each Module can communicate with other modules by the core config/resource/event system and interfaces.
- C compiler: gcc/clang/mingw-w64
- Odin Compiler (soon)
- Cmake
- SDL required libraries (Linux)
git clone https://github.com/hadron13/Skeewb.git --recurse-submodules
cd Skeewb
gcc crane.c -o crane # clang works too
./crane # may be .exe in Windows
An example module can be created using the following commands:
./crane example
cd examplemod
gcc crane.c -o crane # examplemod's own crane
./crane
Check the wiki for more information.