mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
14 lines
286 B
C
14 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;
|
|
};
|