dungeon_crawler

diff prototype/src/opengl.h @ 7:8fb37db44fd8

first person motion
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 17 Aug 2012 14:29:37 +0300
parents 96de911d05d4
children 5c41e6fcb300
line diff
     1.1 --- a/prototype/src/opengl.h	Tue Aug 14 08:49:38 2012 +0300
     1.2 +++ b/prototype/src/opengl.h	Fri Aug 17 14:29:37 2012 +0300
     1.3 @@ -9,4 +9,9 @@
     1.4  #include <GLUT/glut.h>
     1.5  #endif
     1.6  
     1.7 +class Matrix4x4;
     1.8 +
     1.9 +void load_matrix(const Matrix4x4 &m);
    1.10 +void mult_matrix(const Matrix4x4 &m);
    1.11 +
    1.12  #endif	/* OPENGL_H_ */