LeviLamina
Loading...
Searching...
No Matches
Modifier.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Input {
6
7enum class Modifier : int {
8 // bitfield representation
9 Unused = 0,
10 None = 1 << 0,
11 Alt = 1 << 1,
12 Control = 1 << 2,
13 Shift = 1 << 3,
14 Any = None | Alt | Control | Shift,
15};
16
17}
Definition Control.h:5