A work in progress Jump'n'Run game.
Try out the latest version online.
It is still just a tech demo. Use cursor keys to run, CTRL to hammer, R to regenerate level.
A C++17 conforming compiler is required. A scripts for the CMake build systems is provided.
Checking out the source:
git clone --recurse-submodules https://github.com/houmain/crown
Building for your desktop platform:
cd crown
cmake -B build
cmake --build build
Building for the web:
The web version is powerd by WAjic. Only LLVM and nodejs need to be installed (no Emscripten).
cd crown
cmake -B build-web -DCMAKE_TOOLCHAIN_FILE=cmake/clang-wajic.cmake
cmake --build build-web