citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 92fdc2de421fc465230629ce114702822bcba0fd
parent 86fd3eca054ad3355074b36af86719159a1f005d
Author: Kyle Milz <kyle@0x30.net>
Date:   Wed, 13 Jul 2016 23:18:10 -0600

src: remove struct point

Diffstat:
Msrc/draw.h | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/src/draw.h b/src/draw.h @@ -1,15 +1,6 @@ #ifndef DRAW_H #define DRAW_H -#include <GL/glew.h> - -struct point { - GLfloat x; - GLfloat y; - GLfloat s; - GLfloat t; -}; - class drawable { public: virtual void draw() = 0;