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

31 lines
687 B
C++

#pragma once
#include "RE/B/BSExtraData.h"
namespace RE
{
class __declspec(novtable) ExtraStartingWorldOrCell :
public BSExtraData // 00
{
public:
static constexpr auto RTTI{ RTTI::ExtraStartingWorldOrCell };
static constexpr auto VTABLE{ VTABLE::ExtraStartingWorldOrCell };
static constexpr auto TYPE{ EXTRA_DATA_TYPE::kStartingWorldOrCell };
ExtraStartingWorldOrCell() :
ExtraStartingWorldOrCell(nullptr)
{}
ExtraStartingWorldOrCell(TESForm* a_form) :
BSExtraData(TYPE),
startingWorldOrCell(a_form)
{
REX::EMPLACE_VTABLE(this);
}
// members
TESForm* startingWorldOrCell; // 18
};
static_assert(sizeof(ExtraStartingWorldOrCell) == 0x20);
}