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

22 lines
443 B
C++

#pragma once
#include "RE/B/BSTEvent.h"
namespace RE
{
class TESFormDeleteEvent
{
public:
[[nodiscard]] static BSTEventSource<TESFormDeleteEvent>* GetEventSource()
{
using func_t = decltype(&TESFormDeleteEvent::GetEventSource);
static REL::Relocation<func_t> func{ ID::TESFormDeleteEvent::GetEventSource };
return func();
}
// members
TESFormID formID; // 00
};
static_assert(sizeof(TESFormDeleteEvent) == 0x04);
}