docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/C/CombatStyleCloseRangeData.h"
|
||||
#include "RE/C/CombatStyleCoverData.h"
|
||||
#include "RE/C/CombatStyleFlightData.h"
|
||||
#include "RE/C/CombatStyleGeneralData.h"
|
||||
#include "RE/C/CombatStyleLongRangeData.h"
|
||||
#include "RE/C/CombatStyleMeleeData.h"
|
||||
#include "RE/C/CombatStyleRangedData.h"
|
||||
#include "RE/T/TESForm.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) TESCombatStyle :
|
||||
public TESForm // 00
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::TESCombatStyle };
|
||||
static constexpr auto VTABLE{ VTABLE::TESCombatStyle };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kCSTY };
|
||||
|
||||
enum class FLAG : std::uint32_t
|
||||
{
|
||||
kDuelingStyle = 0x1,
|
||||
kFlankingStyle = 0x2,
|
||||
kAllowDualWeilding = 0x4,
|
||||
kChargingStyle = 0x8,
|
||||
kAllowMeleeRetarget = 0x10
|
||||
};
|
||||
|
||||
// members
|
||||
CombatStyleGeneralData generalData; // 20
|
||||
CombatStyleMeleeData meleeData; // 50
|
||||
CombatStyleRangedData rangedData; // 78
|
||||
CombatStyleCloseRangeData closeRangeData; // 7C
|
||||
CombatStyleLongRangeData longRangeData; // A8
|
||||
CombatStyleCoverData coverData; // BC
|
||||
CombatStyleFlightData flightData; // C0
|
||||
FLAG flags; // E0
|
||||
};
|
||||
static_assert(sizeof(TESCombatStyle) == 0xE8);
|
||||
}
|
||||
Reference in New Issue
Block a user