CommonLibSSE (Parapets fork)
CharEvent.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/I/InputEvent.h"
4 
5 namespace RE
6 {
7  class CharEvent : public InputEvent
8  {
9  public:
10  inline static constexpr auto RTTI = RTTI_CharEvent;
11 
12  ~CharEvent() override; // 00
13 
14  void Init(std::uint32_t a_keyCode)
15  {
16  keyCode = a_keyCode;
17  }
18 
19  std::uint32_t keyCode; // 18
20  std::uint32_t pad1C; // 1C
21  };
22  static_assert(sizeof(CharEvent) == 0x20);
23 }
Definition: CharEvent.h:8
std::uint32_t keyCode
Definition: CharEvent.h:19
std::uint32_t pad1C
Definition: CharEvent.h:20
static constexpr auto RTTI
Definition: CharEvent.h:10
~CharEvent() override
void Init(std::uint32_t a_keyCode)
Definition: CharEvent.h:14
Definition: InputEvent.h:26
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_CharEvent
Definition: Offsets_RTTI.h:3710