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 |
|
17 |
protected override bool IsNotValidProcess(ProcContainer p) |
18 |
{ |
19 |
logger.Debug.WriteLine(" Allowing process {0} to be added",p.Name); |
20 |
return false; |
21 |
} |
22 |
#region IPluginBase Members |
23 |
public override Guid ID |
24 |
{ |
25 |
get |
26 |
{ |
27 |
return new GuidGenerator(typeof(GenericConfig).FullName).Guid; |
28 |
} |
29 |
} |
30 |
public override string Name |
31 |
{ |
32 |
get { return "Generic Configuration Plugin"; } |
33 |
} |
34 |
public override string Description |
35 |
{ |
36 |
get { return "This plugin provides a generic configuration"; } |
37 |
} |
38 |
#endregion |
39 |
} |
40 |
} |