18 lines
414 B
C++
18 lines
414 B
C++
#pragma once
|
|
|
|
#include "RE/B/BSInputEventReceiver.h"
|
|
#include "RE/B/BSInputEventUser.h"
|
|
|
|
namespace RE
|
|
{
|
|
class BSInputEventSingleUser :
|
|
public BSInputEventReceiver, // 00
|
|
public BSInputEventUser // 10
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BSInputEventSingleUser };
|
|
static constexpr auto VTABLE{ VTABLE::BSInputEventSingleUser };
|
|
};
|
|
static_assert(sizeof(BSInputEventSingleUser) == 0x20);
|
|
}
|