Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.5 KB

README.md

File metadata and controls

36 lines (21 loc) · 1.5 KB

This is a 2D graphics assignment done for computer graphics course in my university, it's a simplified (modified) clone of King Of Thieves game.

The assignment is written using c++ with openGL and glut .

You can find two different source files, one is ready to run on Visual Studio with GLUT API and the other is ready to be run with freeglut.

screenshot-01 screenshot-02

Installation :

Windows

Just create a Win32 C++ console application in visual studio, link it with openGL and add visual studio source files to your project .

Linux with freeglut

Install freeglut on your system, if you are using apt you can follow this guide

compile the source code and make sure you link openGL and glut while compiling by using :

g++ -lglut -lGL -lGLU source.cpp -o execuatable

Then run the executable

./executable.out