forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHotSpot.cs
More file actions
45 lines (38 loc) · 767 Bytes
/
Copy pathHotSpot.cs
File metadata and controls
45 lines (38 loc) · 767 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
using System;
using System.Drawing;
using ReClassNET.Memory;
using ReClassNET.Nodes;
namespace ReClassNET.UI
{
public enum HotSpotType
{
None,
Edit,
OpenClose,
Select,
Drop,
Click,
ChangeType,
Delete,
RTTI,
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 MemoryBuffer Memory { get; set; }
}
}