rnd-20090623-1-src
[rocksndiamonds.git] / src / game_sp / TickCountObject.h
diff --git a/src/game_sp/TickCountObject.h b/src/game_sp/TickCountObject.h
new file mode 100644 (file)
index 0000000..50a3454
--- /dev/null
@@ -0,0 +1,25 @@
+// ----------------------------------------------------------------------------
+// TickCountObject.h
+// ----------------------------------------------------------------------------
+
+#ifndef TICKCOUNTOBJECT_H
+#define TICKCOUNTOBJECT_H
+
+#include "vb_types.h"
+#include "vb_defs.h"
+#include "vb_vars.h"
+#include "vb_lib.h"
+
+#include "global.h"
+
+extern void TickCountObject_DelayMS(long MSInterval, boolean DoEventsFlag);
+extern void TickCountObject_DelayS(long SInterval, boolean DoEventsFlag);
+extern boolean TickCountObject_Get_Active();
+extern boolean TickCountObject_Get_Pause();
+extern currency TickCountObject_Get_TickNow();
+extern void TickCountObject_Let_Pause(boolean NewVal);
+extern long TickCountObject_TickDiffMS(currency TickStart);
+extern long TickCountObject_TickDiffS(currency TickStart);
+extern currency TickCountObject_TickDiffUS(currency TickStart);
+
+#endif /* TICKCOUNTOBJECT_H */