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