4 |
|
using System.Text; |
5 |
|
using System.Diagnostics; |
6 |
|
using RomCheater.PluginFramework.Core; |
7 |
+ |
using RomCheater.PluginFramework.Events; |
8 |
|
|
9 |
|
namespace RomCheater.PluginFramework.Interfaces |
10 |
|
{ |
11 |
< |
#region IPluginBase |
11 |
> |
#region IPluginBase |
12 |
|
public interface IPluginBase : IPluginName, IPluginDescription, IPluginID, IToString, IPluginRefresh { } |
13 |
|
#region IPluginBase SubMembers |
14 |
|
public interface IToString { string ToString(); } |
19 |
|
#endregion |
20 |
|
#endregion |
21 |
|
#region IConfigPlugin |
22 |
< |
public interface IConfigPlugin : IPluginBase, IAcceptsReadOnlyMemoryRange |
22 |
> |
public interface IConfigPlugin : IPluginBase, IAcceptsReadOnlyMemoryRange, ISearchInProgress, IAcceptsMemorySearch |
23 |
|
{ |
24 |
|
List<ProcContainer> ValidProcessesForPlugin { get; } |
25 |
|
} |