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

20 lines
451 B
C++

#pragma once
namespace RE
{
class TESLocationClearedEvent
{
public:
[[nodiscard]] static BSTEventSource<TESLocationClearedEvent>* GetEventSource()
{
using func_t = decltype(&TESLocationClearedEvent::GetEventSource);
static REL::Relocation<func_t> func{ ID::TESLocationClearedEvent::GetEventSource };
return func();
}
// members
const BGSLocation* location; // 00
};
static_assert(sizeof(TESLocationClearedEvent) == 0x08);
}