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