Many fixes to regressions in perl and cleaning up the final interface

This commit is contained in:
KimLS
2013-06-12 15:04:26 -07:00
parent 56b41c882b
commit c0d37b2e04
32 changed files with 438 additions and 635 deletions
+1 -3
View File
@@ -29,6 +29,7 @@
class Timer
{
public:
Timer();
Timer(uint32 timer_time, bool iUseAcurateTiming = false);
Timer(uint32 start, uint32 timer, bool iUseAcurateTiming);
~Timer() { }
@@ -62,9 +63,6 @@ private:
// Instead of Check() setting the start_time = now,
// it it sets it to start_time += timer_time
bool pUseAcurateTiming;
// static uint32 current_time;
// static uint32 last_time;
};
#endif