CommonLibSSE (powerof3)
BGSMenuIcon.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/F/FormTypes.h"
4 #include "RE/T/TESForm.h"
5 #include "RE/T/TESIcon.h"
6 
7 namespace RE
8 {
9  class BGSMenuIcon :
10  public TESForm, // 00
11  public TESIcon // 20
12  {
13  public:
14  inline static constexpr auto RTTI = RTTI_BGSMenuIcon;
15  inline static constexpr auto FORMTYPE = FormType::MenuIcon;
16 
17  struct RecordFlags
18  {
19  enum RecordFlag : std::uint32_t
20  {
21  };
22  };
23 
24  ~BGSMenuIcon() override; // 00
25 
26  // override (TESForm)
27  bool Load(TESFile* a_mod) override; // 06 - { return true; }
28  };
29  static_assert(sizeof(BGSMenuIcon) == 0x30);
30 }
Definition: BGSMenuIcon.h:12
static constexpr auto RTTI
Definition: BGSMenuIcon.h:14
~BGSMenuIcon() override
bool Load(TESFile *a_mod) override
static constexpr auto FORMTYPE
Definition: BGSMenuIcon.h:15
Definition: TESFile.h:14
Definition: TESForm.h:34
Definition: TESIcon.h:8
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_BGSMenuIcon
Definition: Offsets_RTTI.h:1329
Definition: BGSMenuIcon.h:18
RecordFlag
Definition: BGSMenuIcon.h:20