LeviLamina
Loading...
Searching...
No Matches
AnchorPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ui {
6
7enum class AnchorPoint : schar {
8 TopLeft = 0,
9 TopMiddle = 1,
10 TopRight = 2,
11 LeftMiddle = 3,
12 Center = 4,
13 RightMiddle = 5,
14 BottomLeft = 6,
15 BottomMiddle = 7,
16 BottomRight = 8,
17};
18
19}