18 lines
359 B
C++
18 lines
359 B
C++
#pragma once
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) TESChildCell
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::TESChildCell };
|
|
static constexpr auto VTABLE{ VTABLE::TESChildCell };
|
|
|
|
virtual ~TESChildCell() = default; // 00
|
|
|
|
// add
|
|
virtual TESObjectCELL* GetSaveParentCell() const = 0; // 01
|
|
};
|
|
static_assert(sizeof(TESChildCell) == 0x8);
|
|
}
|