1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
10 |
using RomCheater.PluginFramework.Interfaces; |
11 |
using RomCheater.PluginFramework.Events; |
12 |
using System.Diagnostics; |
13 |
|
14 |
namespace RomCheater.Docking |
15 |
{ |
16 |
public partial class FloatingMemoryView : DockContent, IProcessConfig, IAcceptsPlugin<IConfigPlugin> |
17 |
{ |
18 |
public FloatingMemoryView() { InitializeComponent(); this.AcceptedPlugin = null; this.AcceptedProcess = null; } |
19 |
public FloatingMemoryView(IConfigPlugin config) : this() { this.AcceptedPlugin = config; } |
20 |
public FloatingMemoryView(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; } |
21 |
#region IProcessConfig Members |
22 |
public Process AcceptedProcess { get; set; } |
23 |
#endregion |
24 |
#region IAcceptsPlugin<IConfigPlugin> Members |
25 |
public IConfigPlugin AcceptedPlugin { get; set; } |
26 |
#endregion |
27 |
} |
28 |
} |