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

24 lines
420 B
C++

#pragma once
namespace RE
{
class OBJ_BOOK
{
public:
union Teaches
{
ActorValueInfo* actorValueToAdvance;
SpellItem* spell;
BGSPerk* perk;
};
static_assert(sizeof(Teaches) == 0x8);
// members
std::int8_t flags; // 00
Teaches teaches; // 08
std::uint32_t textOffsetX; // 10
std::uint32_t textOffsetY; // 14
};
static_assert(sizeof(OBJ_BOOK) == 0x18);
}