CommonLibSSE (powerof3)
MenuOpenHandler.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace RE
6 {
8  {
9  public:
10  inline static constexpr auto RTTI = RTTI_MenuOpenHandler;
11  inline static constexpr auto VTABLE = VTABLE_MenuOpenHandler;
12 
13  ~MenuOpenHandler() override; // 00
14 
15  // override (MenuEventHandler)
16  bool CanProcess(InputEvent* a_event) override; // 01
17  bool ProcessKinect(KinectEvent* a_event) override; // 02
18  bool ProcessButton(ButtonEvent* a_event) override; // 05
19 
20  // members
21  bool unk10; // 10
22  std::uint8_t unk11; // 11
23  std::uint16_t unk12; // 12
24  std::uint32_t unk14; // 14
25  };
26  static_assert(sizeof(MenuOpenHandler) == 0x18);
27 }
Definition: ButtonEvent.h:11
Definition: InputEvent.h:25
Definition: KinectEvent.h:9
Definition: MenuEventHandler.h:14
Definition: AbsorbEffect.h:6
constexpr std::array< REL::ID, 1 > VTABLE_MenuOpenHandler
Definition: Offsets_VTABLE.h:12003
constexpr REL::ID RTTI_MenuOpenHandler(static_cast< std::uint64_t >(688891))
Definition: MenuOpenHandler.h:8
bool ProcessKinect(KinectEvent *a_event) override
bool unk10
Definition: MenuOpenHandler.h:21
~MenuOpenHandler() override
bool ProcessButton(ButtonEvent *a_event) override
std::uint32_t unk14
Definition: MenuOpenHandler.h:24
static constexpr auto RTTI
Definition: MenuOpenHandler.h:10
std::uint16_t unk12
Definition: MenuOpenHandler.h:23
std::uint8_t unk11
Definition: MenuOpenHandler.h:22
bool CanProcess(InputEvent *a_event) override
static constexpr auto VTABLE
Definition: MenuOpenHandler.h:11