summaryrefslogtreecommitdiff
path: root/inc/timer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/timer.hpp')
-rw-r--r--inc/timer.hpp25
1 files changed, 0 insertions, 25 deletions
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 <SDL2/SDL.h>
-
-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