-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathHotSpot.cs
More file actions
49 lines (41 loc) · 867 Bytes
/
HotSpot.cs
File metadata and controls
49 lines (41 loc) · 867 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
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Drawing;
using ReClassNET.Memory;
using ReClassNET.Nodes;
namespace ReClassNET.UI
{
public enum HotSpotType
{
None,
Edit,
OpenClose,
Select,
Click,
DoubleClick,
ChangeClassType,
ChangeWrappedType,
ChangeEnumType,
Context,
Delete,
Address,
Name,
Comment
}
public class HotSpot
{
public const int NoneId = -1;
public const int AddressId = 100;
public const int NameId = 101;
public const int CommentId = 102;
public const int ReadOnlyId = 999;
public int Id { get; set; }
public HotSpotType Type { get; set; }
public int Level { get; set; }
public string Text { get; set; }
public BaseNode Node { get; set; }
public Rectangle Rect { get; set; }
public IntPtr Address { get; set; }
public RemoteProcess Process { get; set; }
public MemoryBuffer Memory { get; set; }
}
}