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