Logo
NodeInstance.h
1#pragma once
2
3namespace XXSharpKmyGfx
4{
5 private ref class NodeInstance
6 {
7 public:
8 void* native = nullptr;
9 NodeInstance(void* ptr)
10 {
11 native = ptr;
12 }
13 NodeInstance^ getParent();
14 NodeInstance^ getFirstChild();
15 NodeInstance^ getNextSibling();
16 XXSharpKmyMath::Matrix4 getMatrix();
17 };
18}