13 |
|
|
14 |
namespace RomCheater.Docking |
namespace RomCheater.Docking |
15 |
{ |
{ |
16 |
public partial class FloatingMemoryView : DockContent, IProcessConfig, IAcceptsPlugin<IConfigPlugin>, IAcceptsExternalMemoryAddress |
public partial class FloatingMemoryView : DockContent, IAcceptsProcess<Process>, IAcceptsPlugin<IConfigPlugin>, IAcceptsExternalMemoryAddress |
17 |
{ |
{ |
18 |
public FloatingMemoryView() { |
public FloatingMemoryView() { |
19 |
InitializeComponent(); |
InitializeComponent(); |
24 |
} |
} |
25 |
public FloatingMemoryView(IConfigPlugin config) : this() { this.AcceptedPlugin = config; } |
public FloatingMemoryView(IConfigPlugin config) : this() { this.AcceptedPlugin = config; } |
26 |
public FloatingMemoryView(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; } |
public FloatingMemoryView(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; } |
27 |
#region IProcessConfig Members |
#region IAcceptsProcess<Process> Members |
28 |
public Process AcceptedProcess { get { return MemView.AcceptedProcess; } set { MemView.AcceptedProcess = value; } } |
public Process AcceptedProcess { get { return MemView.AcceptedProcess; } set { MemView.AcceptedProcess = value; } } |
29 |
#endregion |
#endregion |
30 |
#region IAcceptsPlugin<IConfigPlugin> Members |
#region IAcceptsPlugin<IConfigPlugin> Members |