-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathViewInfo.cs
More file actions
41 lines (36 loc) · 906 Bytes
/
ViewInfo.cs
File metadata and controls
41 lines (36 loc) · 906 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
using System;
using System.Collections.Generic;
using System.Drawing;
using ReClassNET.Memory;
namespace ReClassNET.UI
{
public class ViewInfo
{
public Settings Settings { get; set; }
public Graphics Context { get; set; }
public FontEx Font { get; set; }
public MemoryBuffer Memory { get; set; }
public Rectangle ClientArea { get; set; }
public List<HotSpot> HotSpots { get; set; }
public List<Nodes.ClassNode> Classes { get; set; }
public IntPtr Address { get; set; }
public int Level { get; set; }
public bool MultipleNodesSelected { get; set; }
public ViewInfo Clone()
{
return new ViewInfo
{
Settings = Settings,
Context = Context,
Font = Font,
Memory = Memory,
ClientArea = ClientArea,
HotSpots = HotSpots,
Classes = Classes,
Address = Address,
Level = Level,
MultipleNodesSelected = MultipleNodesSelected
};
}
}
}