stefandevai / stella-engine

C++/OpenGL 2D game engine
GNU General Public License v3.0
21 stars 1 forks source link
cross-platform game-engine opengl-game-engine

Stella Engine

Travis-CI Build Status AppVeyor Build Status License

Stella Engine demo

Description:

A cross-platform 2D C++/OpenGL game engine in its early development phase.

Current features:

Building:

The project uses cmake as its build system.

Building an example on GNU/Linux or MacOS X:

git clone --recursive https://github.com/stefandevai/stella-engine.git
cd stella-engine
./helper.sh --build

If you don't want to use the script you can also do it manually:

git clone --recursive https://github.com/stefandevai/stella-engine.git
cd stella-engine
mkdir build
cd build
cmake ..
make