Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (18 loc) · 792 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 792 Bytes

Dreco Engine

Student project with target of writing game engine and a small example game on it. Engine supports only 2D rendering space and uses OpenGL(ES) as rendering API. Depends on: SDL2, SDL2_image and SDL2_mixer.

Improtant notes

Please note, a lot of work still Work In Progress state.

UbuntuBuild

Install dependencies - Debian/Ubuntu and etc

sudo apt-get update

sudo apt-get install libsdl2-dev

sudo apt-get install libsdl2-image-dev

sudo apt-get install libsdl2-mixer-dev

Build & Run

cd your_preffered_clone_dir

git clone https://github.com/GloryOfNight/dreco-engine

cd dreco-engine

mkdir build && cd build

cmake .. && make

cd example-game/ && ./example-game