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 94 by william, Wed May 9 22:31:56 2012 UTC vs.
Revision 153 by william, Mon May 28 02:20:29 2012 UTC

--- trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2012/05/09 22:31:56	94
+++ trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2012/05/28 02:20:29	153
@@ -48,4 +48,15 @@ namespace RomCheater.PluginFramework.Int
         string ToString();
     }
     #endregion
+#region AcceptsPlugin
+    public interface IAcceptsPlugin<PLUGIN_TYPE> 
+        where PLUGIN_TYPE : IPluginBase
+    {
+        PLUGIN_TYPE AcceptedPlugin { get; set; }
+    }
+#endregion
+    public interface IProcessConfig : IAcceptsPlugin<IConfigPlugin>
+    {
+        Process AcceptedProcess { get; set; }
+    }
 }