mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-21 18:19:19 +02:00
Remove __fastcall calling convention
This commit is contained in:
64
Timer.h
64
Timer.h
@@ -1,32 +1,32 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#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
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#ifndef TimerH
|
||||
#define TimerH
|
||||
|
||||
namespace Timer
|
||||
{
|
||||
|
||||
double GetTime();
|
||||
|
||||
double GetDeltaTime();
|
||||
double GetDeltaRenderTime();
|
||||
|
||||
double GetfSinceStart();
|
||||
|
||||
void SetDeltaTime(double v);
|
||||
|
||||
double GetSimulationTime();
|
||||
|
||||
void SetSimulationTime(double v);
|
||||
|
||||
bool GetSoundTimer();
|
||||
|
||||
double GetFPS();
|
||||
|
||||
void ResetTimers();
|
||||
|
||||
void UpdateTimers(bool pause);
|
||||
};
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user