24 lines
550 B
C++
24 lines
550 B
C++
#pragma once
|
|
|
|
#include "RE/A/AttackData.h"
|
|
#include "RE/B/BSFixedString.h"
|
|
#include "RE/N/NiRefObject.h"
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) BGSAttackData :
|
|
public NiRefObject // 00
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::BGSAttackData };
|
|
static constexpr auto VTABLE{ VTABLE::BGSAttackData };
|
|
|
|
// members
|
|
BSFixedString event; // 10
|
|
AttackData data; // 18
|
|
BGSEquipSlot* weaponEquipSlot; // 50
|
|
BGSEquipSlot* requiredEquipSlot; // 58
|
|
};
|
|
static_assert(sizeof(BGSAttackData) == 0x60);
|
|
}
|