CommonLibSSE (Parapets fork)
IDEvent.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSFixedString.h"
4 #include "RE/I/InputEvent.h"
5 
6 namespace RE
7 {
8  class IDEvent : public InputEvent
9  {
10  public:
11  inline static constexpr auto RTTI = RTTI_IDEvent;
12 
13  ~IDEvent() override; // 00
14 
15  // override
16  bool HasIDCode() const override; // 01 - { return true; }
17  [[nodiscard]] const BSFixedString& QUserEvent() const override; // 02 - { return userEvent; }
18 
19  [[nodiscard]] constexpr std::uint32_t GetIDCode() const noexcept { return idCode; }
20 
21  // members
23  std::uint32_t idCode; // 20
24  std::uint32_t pad24; // 24
25  };
26  static_assert(sizeof(IDEvent) == 0x28);
27 }
Definition: IDEvent.h:9
std::uint32_t pad24
Definition: IDEvent.h:24
const BSFixedString & QUserEvent() const override
std::uint32_t idCode
Definition: IDEvent.h:23
~IDEvent() override
static constexpr auto RTTI
Definition: IDEvent.h:11
constexpr std::uint32_t GetIDCode() const noexcept
Definition: IDEvent.h:19
BSFixedString userEvent
Definition: IDEvent.h:22
bool HasIDCode() const override
Definition: InputEvent.h:26
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_IDEvent
Definition: Offsets_RTTI.h:4940