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 436 by william, Wed Jun 20 13:24:49 2012 UTC vs.
Revision 437 by william, Tue May 28 18:08:23 2013 UTC

--- trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2013/05/28 17:17:19	436
+++ trunk/RomCheater.PluginFramework/Interfaces/PluginInterfaces.cs	2013/05/28 18:08:23	437
@@ -34,6 +34,11 @@ namespace RomCheater.PluginFramework.Int
     {
     }
     #endregion
+    #region IUserControlPlugin
+    public interface IUserControlPlugin : IPluginBase
+    {
+    }
+    #endregion
     #region IPluginLoader
     public interface IPluginLoader
     {
@@ -42,7 +47,8 @@ namespace RomCheater.PluginFramework.Int
         List<IConfigPlugin> LoadedConfigPlugins { get; }
         List<IInputPlugin> LoadedInputPlugins { get; }
         List<IWindowPlugin> LoadedWindowPlugins { get; }
-        
+        List<IUserControlPlugin> LoadedUserControlPlugins { get; }
+
         IConfigPlugin GetConfigPlugin(string t);
         IInputPlugin GetInputPlugin(string t);
         IWindowPlugin GetWindowPlugin(string t);