mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 04:00:53 +01:00
15 lines
286 B
C
15 lines
286 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <NetImmerse/NiAVObject.h>
|
||
|
|
#include <NetImmerse/NiTObjectArray.h>
|
||
|
|
|
||
|
|
struct NiNode : NiAVObject
|
||
|
|
{
|
||
|
|
virtual ~NiNode();
|
||
|
|
|
||
|
|
// in reality:
|
||
|
|
// NiTObjectArray<NiPointer<NiAVObject>> children;
|
||
|
|
// but we are lazy:
|
||
|
|
NiTObjectArray<NiAVObject*> children;
|
||
|
|
};
|