23 lines
515 B
C++
23 lines
515 B
C++
#pragma once
|
|
|
|
#include "RE/N/NiObjectNET.h"
|
|
|
|
namespace RE
|
|
{
|
|
class NiUpdateData;
|
|
|
|
class __declspec(novtable) NiProperty :
|
|
public NiObjectNET // 00
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::NiProperty };
|
|
static constexpr auto VTABLE{ VTABLE::NiProperty };
|
|
static constexpr auto Ni_RTTI{ Ni_RTTI::NiProperty };
|
|
|
|
// add
|
|
virtual std::int32_t Type() = 0; // 28
|
|
virtual void Update(NiUpdateData& a_updateData); // 29
|
|
};
|
|
static_assert(sizeof(NiProperty) == 0x28);
|
|
}
|