Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BGSAttackData.h
T
2026-05-30 18:33:24 +12:00

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);
}