terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
EventModifiers.cs
Go to the documentation of this file.
1using System;
2
3namespace UnityEngine
4{
5 // Token: 0x0200000A RID: 10
6 [Flags]
7 public enum EventModifiers
8 {
9 // Token: 0x04000048 RID: 72
10 None = 0,
11 // Token: 0x04000049 RID: 73
12 Shift = 1,
13 // Token: 0x0400004A RID: 74
14 Control = 2,
15 // Token: 0x0400004B RID: 75
16 Alt = 4,
17 // Token: 0x0400004C RID: 76
18 Command = 8,
19 // Token: 0x0400004D RID: 77
20 Numeric = 16,
21 // Token: 0x0400004E RID: 78
22 CapsLock = 32,
23 // Token: 0x0400004F RID: 79
24 FunctionKey = 64
25 }
26}