CommonLibVR
BSMouseDevice.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSInputDevice.h"
4 
5 namespace RE
6 {
7  class BSMouseDevice : public BSInputDevice
8  {
9  public:
10  inline static constexpr auto RTTI = RTTI_BSMouseDevice;
11  inline static constexpr auto VTABLE = VTABLE_BSMouseDevice;
12 
13  ~BSMouseDevice() override; // 00
14 
15  // add
16  virtual void Reinitialize(void); // 09 - { return; }
17 
18  // members
19  bool backgroundMouse; // 70
20 
21  protected:
22  friend class BSInputDeviceFactory;
24 
25  private:
26  KEEP_FOR_RE()
27  };
28 
29  static_assert(sizeof(BSMouseDevice) == 0x78);
30 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: BSInputDeviceFactory.h:9
Definition: BSInputDevice.h:11
Definition: BSMouseDevice.h:8
static constexpr auto RTTI
Definition: BSMouseDevice.h:10
~BSMouseDevice() override
static constexpr auto VTABLE
Definition: BSMouseDevice.h:11
virtual void Reinitialize(void)
bool backgroundMouse
Definition: BSMouseDevice.h:19
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_BSMouseDevice(static_cast< std::uint64_t >(690314))
constexpr std::array< REL::ID, 1 > VTABLE_BSMouseDevice
Definition: Offsets_VTABLE.h:9249