CommonLibSSE (Parapets fork)
TESValueForm.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace RE
6 {
7  class TESForm;
8 
10  {
11  public:
12  inline static constexpr auto RTTI = RTTI_TESValueForm;
13 
14  ~TESValueForm() override; // 00
15 
16  // override (BaseFormComponent)
17  void InitializeDataComponent() override; // 01
18  void ClearDataComponent() override; // 02 - { return; }
19  void CopyComponent(BaseFormComponent* a_rhs) override; // 03
20 
21  [[nodiscard]] static std::int32_t GetFormValue(const TESForm* a_form);
22 
23  // members
24  std::int32_t value; // 08
25  std::uint32_t pad0C; // 0C
26  };
27  static_assert(sizeof(TESValueForm) == 0x10);
28 }
Definition: BaseFormComponent.h:8
Definition: TESForm.h:34
Definition: TESValueForm.h:10
void InitializeDataComponent() override
void ClearDataComponent() override
static std::int32_t GetFormValue(const TESForm *a_form)
~TESValueForm() override
void CopyComponent(BaseFormComponent *a_rhs) override
static constexpr auto RTTI
Definition: TESValueForm.h:12
std::uint32_t pad0C
Definition: TESValueForm.h:25
std::int32_t value
Definition: TESValueForm.h:24
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_TESValueForm
Definition: Offsets_RTTI.h:6083