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

Comparing trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs (file contents):
Revision 683 by william, Mon Jun 17 08:27:34 2013 UTC vs.
Revision 684 by william, Mon Jun 17 08:52:54 2013 UTC

--- trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2013/06/17 08:33:06	683
+++ trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2013/06/17 08:52:54	684
@@ -10,11 +10,14 @@ using WeifenLuo.WinFormsUI.Docking;
 namespace RomCheater.PluginFramework.Interfaces
 {
     #region t
-    public interface IExposedPluginData : IAcceptPEData
+    public interface IExposedPluginData : 
+        IAcceptPEData,
+        IAcceptsPEData,
+        IAcceptsChangedProcess,
+        IAcceptsChangedConfig
     {
         void SetAcceptedProcess(Process proc);
         void SetAcceptedConfig(IConfigPlugin config);
-
         void SetAcceptedProcessAndConfig(IAcceptsProcessAndConfig iapc);
 
     }