To build ConsoleCraftEditor, you'll need to install ninja and ncurses. Follow the instructions below to install these dependencies on a Linux system.
Ninja is a small build system with a focus on speed. To install ninja, open your terminal and run:
sudo apt-get update
sudo apt-get install ninja-buildsudo apt-get update
sudo apt-get install libncurses5-dev libncursesw5-devmkdir build
cd build
cp ../imgui.ini .
cmake -G Ninja ..
ninja
./ConsoleCraftEditor
To run project from editor you need to open editor with terminal. Your game will run on this terminal when you click run.
