1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using RomCheater.PluginFramework.Core; |
6 |
using System.Diagnostics; |
7 |
using System.Security.Principal; |
8 |
using RomCheater.Logging; |
9 |
|
10 |
namespace RomCheater.CorePlugins.Config |
11 |
{ |
12 |
public sealed class GenericConfig : ConfigPlugin |
13 |
{ |
14 |
public GenericConfig() : base() { } |
15 |
public GenericConfig(bool doinit) : base(doinit) { } |
16 |
protected override bool IsNotValidProcess(ProcContainer p) |
17 |
{ |
18 |
logger.VerboseDebug.WriteLine(" Allowing process {0} to be added", p.Name); |
19 |
return false; |
20 |
} |
21 |
#region IPluginBase Members |
22 |
public override Guid ID |
23 |
{ |
24 |
get |
25 |
{ |
26 |
return new GuidGenerator(typeof(GenericConfig).FullName).Guid; |
27 |
} |
28 |
} |
29 |
public override string Name |
30 |
{ |
31 |
get { return "Generic Configuration Plugin"; } |
32 |
} |
33 |
public override string Description |
34 |
{ |
35 |
get { return "This plugin provides a generic configuration"; } |
36 |
} |
37 |
#endregion |
38 |
} |
39 |
} |