Skip to content

Commit

Permalink
Update BGSMod.h
Browse files Browse the repository at this point in the history
  • Loading branch information
TommInfinite authored Mar 8, 2024
1 parent 5a2657d commit 66f4cea
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion CommonLibSF/include/RE/B/BGSMod.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,22 @@ namespace RE::BGSMod
{
public:
// members
BSTArray<void*> includes; // 00
enum class IncludesFlag
{
kNone = 0,
kOptional = 1 << 0,
kDontUseAll = 1 << 1
};

struct Include
{
RE::BGSMod::Attachment::Mod* Mod;
std::uint8_t level;
stl::enumeration<IncludesFlag, std::uint8_t> flags;
};
static_assert(sizeof(Include) == 0x10);

BSTArray<Include> includes; // 00
BSTArray<void*> properties; // 10
};
static_assert(sizeof(Data) == 0x20);
Expand Down

0 comments on commit 66f4cea

Please sign in to comment.