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

24 lines
605 B
C++

#pragma once
#include "RE/B/BSTEvent.h"
namespace RE
{
class UIAdvanceMenusFunctionCompleteEvent
{
private:
using EventSource_t = BSTGlobalEvent::EventSource<UIAdvanceMenusFunctionCompleteEvent>;
public:
[[nodiscard]] static EventSource_t* GetEventSource()
{
static REL::Relocation<EventSource_t**> singleton{ ID::UIAdvanceMenusFunctionCompleteEvent::GetEventSource };
if (!*singleton) {
*singleton = new EventSource_t(&BSTGlobalEvent::GetSingleton()->eventSourceSDMKiller);
}
return *singleton;
}
};
static_assert(std::is_empty_v<UIAdvanceMenusFunctionCompleteEvent>);
}