Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 908 Bytes

README.md

File metadata and controls

55 lines (38 loc) · 908 Bytes

Zwei

Game engine for 2d action RPG style games. Work in progress, still very rough.

  • Layers, Sprites, Animations
  • Import Maps and Tilesets from Tiled
  • Items, Weapons and Inventory
  • Combat
  • Menu
  • Builds on Linux and MacOs
  • Save & Load
  • Scripting
  • Building on Windows
  • Docs

Screenshots

Gameplay Video

Gameplay

Menu

Building

macos

Install dependencies

brew install cmake

NOTE: All other dependencies are included in the repository

Build using cmake

cmake .
cmake --build .

Run it

./zwei

To clean and rebuild

rm CMakeCache.txt && rm -rf CMakeFiles/ && rm Makefile && rm cmake_install.cmake  && rm zwei
cmake .
cmake --build .