LeviLamina
Loading...
Searching...
No Matches
Modifier.h
1
#pragma once
2
3
#include "mc/_HeaderOutputPredefine.h"
4
5
namespace
Editor::Input {
6
7
enum 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
}
Control
Definition
Control.h:5
src
mc
editor
input
Modifier.h
Generated on Sat Apr 26 2025 05:56:22 for LeviLamina by
1.12.0