LeviLamina
Loading...
Searching...
No Matches
SelectionVolumeEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Selection {
6
8public:
9 // SelectionVolumeEvent inner types define
10 enum class EventType : int {
11 Error = 0,
12 SetVolume = 1,
13 AddVolume = 2,
14 RemoveVolume = 3,
15 Translate = 4,
16 Move = 5,
17 Clear = 6,
18 };
19
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32};
33
34} // namespace Editor::Selection
Definition SelectionVolumeEvent.h:7
Definition Alias.h:14