7 |
using System.Text; |
using System.Text; |
8 |
using System.Windows.Forms; |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
using WeifenLuo.WinFormsUI.Docking; |
10 |
|
using RomCheater.PluginFramework.Core; |
11 |
|
|
12 |
namespace RomCheater.EmuMMAPPlugin |
namespace RomCheater.EmuMMAPPlugin |
13 |
{ |
{ |
14 |
#region EmuMEMMapDockControl |
#region EmuMEMMapDockControl |
15 |
public partial class EmuMEMMapDockControl : DockContent |
public partial class EmuMEMMapDockControl : DockContent |
16 |
{ |
{ |
17 |
|
private UserControlPlugin plugin; |
18 |
private List<DeviceMemoryMap> DeviceMemoryMaps = new List<DeviceMemoryMap>(); |
private List<DeviceMemoryMap> DeviceMemoryMaps = new List<DeviceMemoryMap>(); |
19 |
public EmuMEMMapDockControl() |
public EmuMEMMapDockControl(UserControlPlugin plugin) |
20 |
{ |
{ |
21 |
|
this.plugin = plugin; |
22 |
InitializeComponent(); |
InitializeComponent(); |
23 |
CreateMaps(); |
CreateMaps(); |
24 |
} |
} |