--- trunk/RomCheater.CheatPlugin/CheatCodeDockContent.cs 2013/06/17 08:27:34 682 +++ trunk/RomCheater.CheatPlugin/CheatCodeDockContent.cs 2013/06/17 08:33:06 683 @@ -21,13 +21,16 @@ using System.Linq; using System.Text; using System.Windows.Forms; using WeifenLuo.WinFormsUI.Docking; +using RomCheater.PluginFramework.Core; namespace RomCheater.CheatPlugin { public partial class CheatCodeDockContent : DockContent { - public CheatCodeDockContent() + private UserControlPlugin plugin; + public CheatCodeDockContent(UserControlPlugin plugin) { + this.plugin = plugin; InitializeComponent(); } } |