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

23 lines
360 B
C++

#pragma once
namespace RE
{
class BSThreadEvent
{
public:
enum class Event
{
kOnStartup = 0x0,
kOnShutdown = 0x1
};
static void InitSDM()
{
using func_t = decltype(&BSThreadEvent::InitSDM);
static REL::Relocation<func_t> func{ ID::BSThreadEvent::InitSDM };
return func();
}
};
static_assert(std::is_empty_v<BSThreadEvent>);
}