LeviLamina
Loading...
Searching...
No Matches
Node.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace glTF {
6
7struct Node {
8public:
9 // member variables
10 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Node& operator=(Node const&);
28 Node(Node const&);
29 Node();
30};
31
32} // namespace glTF
Definition Node.h:7
Definition Alias.h:14