Skip to content

AtomicSponge/wtengine

Repository files navigation

What the Engine?

WTEngine is a lightweight cross-platform game engine written in C++17 using an ECS design.

Requirements


Library Installation

Installation is handled by CMake. To download and prepare the library for installation run:

git clone https://github.com/wtfsystems/wtengine.git
cd wtengine
mkdir build
cd build
cmake ..
cd ..

Then to install the library run:

sudo cmake --build build --target install --config Build

Demo Game

https://github.com/AtomicSponge/slv-demo-01