-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathScanCompareType.cs
More file actions
38 lines (37 loc) · 870 Bytes
/
ScanCompareType.cs
File metadata and controls
38 lines (37 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.ComponentModel;
namespace ReClassNET.MemoryScanner
{
public enum ScanCompareType
{
[Description("Is Equal")]
Equal,
[Description("Is Not Equal")]
NotEqual,
[Description("Has Changed")]
Changed,
[Description("Has Not Changed")]
NotChanged,
[Description("Is Greater Than")]
GreaterThan,
[Description("Is Greater Than Or Equal")]
GreaterThanOrEqual,
[Description("Has Increased")]
Increased,
[Description("Has Increased Or Is Equal")]
IncreasedOrEqual,
[Description("Is Less Than")]
LessThan,
[Description("Is Less Than Or Equal")]
LessThanOrEqual,
[Description("Has Decreased")]
Decreased,
[Description("Has Decreased Or Is Equal")]
DecreasedOrEqual,
[Description("Is Between")]
Between,
[Description("Is Between Or Equal")]
BetweenOrEqual,
[Description("Unknown Initial Value")]
Unknown
}
}