LeviLamina
Loading...
Searching...
No Matches
TileDirection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ui {
6
7enum class TileDirection : int {
8 None = 0,
9 X = 1,
10 Y = 2,
11 Both = 3,
12};
13
14}