This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*stdlibs we need*/ | |
| #include <stdio.h> | |
| #include <math.h> | |
| /*basic allegro functions to give us a window and an OpenGL context*/ | |
| #include <allegro5/allegro.h> | |
| /*all matrix maths functions*/ | |
| #include "matrix.h" |
NewerOlder