From 5c46e0f0a924989201c6784b0f956bc442f14a7e Mon Sep 17 00:00:00 2001 From: majortom6 Date: Sun, 19 Feb 2017 09:17:35 -0600 Subject: -removed glm library, its in the debian repos -made opengl and sdl folders in includes, moved various *hpps to them --- inc/timer.hpp | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 inc/timer.hpp (limited to 'inc/timer.hpp') diff --git a/inc/timer.hpp b/inc/timer.hpp deleted file mode 100644 index d4e46e8..0000000 --- a/inc/timer.hpp +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef timer_h -#define timer_h - -#include - -class Timer -{ - public: - Timer(); - void Start(); - void Stop(); - void Pause(); - void unPause(); - int getTicks(); - bool isStarted(){return started;}; - bool isPaused(){return paused;}; - - private: - int startTicks; - int pausedTicks; - bool paused; - bool started; -}; - -#endif -- cgit v1.2.3