LeviLamina
Loading...
Searching...
No Matches
Mesh.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace glTF {
6
7struct Mesh {
8public:
9 // Mesh inner types declare
10 // clang-format off
11 struct Primitive;
12 // clang-format on
13
14 // Mesh inner types define
15 struct Primitive {
16 public:
17 // Primitive inner types define
18 enum class Mode : uint {};
19 };
20};
21
22} // namespace glTF
Definition Mesh.h:15
Definition Mesh.h:7