DMET 502 - Computer Graphics 2D Assignment
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.
Just create a Win32 C++ console application in visual studio, link it with openGL and add visual studio source files to your project .
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