LeviLamina
Loading...
Searching...
No Matches
SelectionEventType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Services {
6
7enum class SelectionEventType : int {
8 Error = 0,
9 CreateContainer = 1,
10 PushVolume = 2,
11 ReplaceOrAddVolume = 3,
12 ReplaceContents = 4,
13 PopVolume = 5,
14 ClearContainer = 6,
15 TranslateContainer = 7,
16 SetVisible = 8,
17 SetFillColor = 9,
18 SetOutlineColor = 10,
19};
20
21}