ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CheatPlugin/CheatCodeDockContent.cs
(Generate patch)

Comparing trunk/RomCheater.CheatPlugin/CheatCodeDockContent.cs (file contents):
Revision 682 by william, Tue May 28 20:44:13 2013 UTC vs.
Revision 683 by william, Mon Jun 17 08:33:06 2013 UTC

--- 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();
         }
     }