LeviLamina
Loading...
Searching...
No Matches
UIOperation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class UIOperation : int {
6 None = 0,
7 InsertBack = 1,
8 InsertFront = 2,
9 InsertAfter = 3,
10 InsertBefore = 4,
11 MoveBack = 5,
12 MoveFront = 6,
13 MoveAfter = 7,
14 MoveBefore = 8,
15 Swap = 9,
16 Remove = 10,
17 Replace = 11,
18};