summaryrefslogtreecommitdiff
path: root/inc/timer.hpp
diff options
context:
space:
mode:
authortom <tombarrett@siu.edu>2017-01-21 08:58:12 -0600
committertom <tombarrett@siu.edu>2017-01-21 08:58:12 -0600
commita9281bfcf21861e621a3243ecb633a299c8d8e52 (patch)
tree7d4687fd9a8f40e806e6b7c8803c0e87fcae6639 /inc/timer.hpp
parentccb66c8d6d175b1bd3d8ecaa540e80baac5181b6 (diff)
-took basic math functions and put it into functions.hpp
-spaced various lines -reorganized variables by datatype -implemented reproduction -reorganized pathing so once a target is set, the creature checks if that same target is near every cycle
Diffstat (limited to 'inc/timer.hpp')
-rw-r--r--inc/timer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/timer.hpp b/inc/timer.hpp
index c8f43ff..d4e46e8 100644
--- a/inc/timer.hpp
+++ b/inc/timer.hpp
@@ -11,7 +11,7 @@ class Timer
void Stop();
void Pause();
void unPause();
- int getTicks();
+ int getTicks();
bool isStarted(){return started;};
bool isPaused(){return paused;};