This commit is contained in:
nastys
2019-07-30 13:48:28 +02:00
parent 25f819bdfb
commit 998f4274a5
157 changed files with 0 additions and 0 deletions
@@ -0,0 +1,25 @@
#pragma once
#include "EmulatorComponent.h"
namespace TLAC::Components
{
class SysTimer : public EmulatorComponent
{
const int SYS_TIME_FACTOR = 60;
const int SEL_PV_FREEZE_TIME = 39;
public:
SysTimer();
~SysTimer();
virtual const char* GetDisplayName() override;
virtual void Initialize(ComponentsManager*) override;
virtual void Update() override;
private:
int* selPvTime;
int* GetSysTimePtr(void *address);
};
}