LeviLamina
Loading...
Searching...
No Matches
TileDefinition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace GeometryAtlas {
6
7struct TileDefinition {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, uint> mID;
12 ::ll::TypedStorage<4, 4, int> mWidth;
13 ::ll::TypedStorage<4, 4, int> mHeight;
14 // NOLINTEND
15};
16
17} // namespace GeometryAtlas
Definition TileDefinition.h:7