Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/A/AITimer.h
T
2026-05-30 18:33:24 +12:00

20 lines
292 B
C++

#pragma once
namespace RE
{
class AITimer
{
public:
static float fTimer()
{
static REL::Relocation<float*> singleton{ ID::AITimer::fTimer };
return *singleton;
}
// members
float startTime; // 00
float targetTime; // 04
};
static_assert(sizeof(AITimer) == 0x8);
}