Skip to content

Commit

Permalink
feat: Events
Browse files Browse the repository at this point in the history
  • Loading branch information
qudix committed Nov 3, 2024
1 parent 7368fef commit 1e72d8a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions include/RE/E/Events.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,20 @@ namespace RE
}
};

struct BGSAppPausedEvent
{
[[nodiscard]] static BSTEventSource<BGSAppPausedEvent>* GetEventSource()
{
using func_t = decltype(&BGSAppPausedEvent::GetEventSource);
static REL::Relocation<func_t> func{ REL::ID(167011) };
return func();
}

// members
bool paused; // 00
};
static_assert(sizeof(BGSAppPausedEvent) == 0x1);

struct BGSCellGridLoadEvent
{
[[nodiscard]] static BSTEventSource<BGSCellGridLoadEvent>* GetEventSource()
Expand Down

0 comments on commit 1e72d8a

Please sign in to comment.