CommonLibSSE (powerof3)
Loading...
Searching...
No Matches
BSValueNode.h
Go to the documentation of this file.
1#pragma once
2
3#include "RE/B/BSNiNode.h"
4
5namespace RE
6{
7 class BSMasterParticleSystem;
8
9 class BSValueNode : public BSNiNode
10 {
11 public:
12 inline static constexpr auto RTTI = RTTI_BSValueNode;
13 inline static constexpr auto Ni_RTTI = NiRTTI_BSValueNode;
14
15 ~BSValueNode() override; // 00
16
17 // override (BSNiNode)
18 const NiRTTI* GetRTTI() const override; // 02
19 NiObject* CreateClone(NiCloningProcess& a_cloning) override; // 17
20 void LoadBinary(NiStream& a_stream) override; // 18
21 void LinkObject(NiStream& a_stream) override; // 19
22 bool RegisterStreamables(NiStream& a_stream) override; // 1A
23 void SaveBinary(NiStream& a_stream) override; // 1B
24 bool IsEqual(NiObject* a_object) override; // 1C
25 void UpdateWorldData(NiUpdateData* a_data) override; // 30
26
27 // add
28 virtual bool ParseNameForValue(); // 35
29
30 // members
31 std::uint8_t flags; // 128
32 std::uint32_t value; // 12C
34 };
35 static_assert(sizeof(BSValueNode) == 0x138);
36}
Definition: BSNiNode.h:8
Definition: BSValueNode.h:10
void UpdateWorldData(NiUpdateData *a_data) override
void LoadBinary(NiStream &a_stream) override
void SaveBinary(NiStream &a_stream) override
virtual bool ParseNameForValue()
bool IsEqual(NiObject *a_object) override
NiObject * CreateClone(NiCloningProcess &a_cloning) override
void LinkObject(NiStream &a_stream) override
static constexpr auto Ni_RTTI
Definition: BSValueNode.h:13
std::uint8_t flags
Definition: BSValueNode.h:31
~BSValueNode() override
bool RegisterStreamables(NiStream &a_stream) override
std::uint32_t value
Definition: BSValueNode.h:32
static constexpr auto RTTI
Definition: BSValueNode.h:12
const NiRTTI * GetRTTI() const override
NiPointer< BSMasterParticleSystem > associatedObject
Definition: BSValueNode.h:33
Definition: NiCloningProcess.h:10
Definition: NiObject.h:37
Definition: NiSmartPointer.h:9
Definition: NiRTTI.h:6
Definition: NiStream.h:27
Definition: NiAVObject.h:25
Definition: AbsorbEffect.h:6
constexpr REL::ID NiRTTI_BSValueNode(static_cast< std::uint64_t >(524560))
constexpr REL::ID RTTI_BSValueNode(static_cast< std::uint64_t >(690677))