16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 18:19:19 +02:00

Set dp branch as trunk

This commit is contained in:
ShaXbee
2015-04-03 13:34:06 +00:00
commit 45f4c0d98a
132 changed files with 94789 additions and 0 deletions

33
Timer.h Normal file
View File

@@ -0,0 +1,33 @@
//---------------------------------------------------------------------------
#ifndef TimerH
#define TimerH
namespace Timer {
double __fastcall GetTime();
double __fastcall GetDeltaTime();
double __fastcall GetDeltaRenderTime();
double __fastcall GetfSinceStart();
void __fastcall SetDeltaTime(double v);
double __fastcall GetSimulationTime();
void __fastcall SetSimulationTime(double v);
bool __fastcall GetSoundTimer();
double __fastcall GetFPS();
void __fastcall ResetTimers();
void __fastcall UpdateTimers(bool pause);
};
//---------------------------------------------------------------------------
#endif