1 |
william |
81 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
|
|
using RomCheater.PluginFramework.Core; |
6 |
william |
83 |
using System.Diagnostics; |
7 |
william |
81 |
|
8 |
|
|
namespace RomCheater.CorePlugins.Config |
9 |
|
|
{ |
10 |
william |
83 |
public sealed class GenericConfig : ConfigPlugin |
11 |
william |
81 |
{ |
12 |
|
|
public GenericConfig() : base() { } |
13 |
william |
83 |
|
14 |
|
|
private void init() |
15 |
|
|
{ |
16 |
|
|
this.ValidProcessesForPlugin = new List<Process>(); |
17 |
|
|
|
18 |
|
|
Process[] procs = Process.GetProcesses(); |
19 |
|
|
this.ValidProcessesForPlugin = new List<Process>(procs); |
20 |
|
|
} |
21 |
|
|
#region IPluginBase Members |
22 |
|
|
public override string Name |
23 |
|
|
{ |
24 |
|
|
get { return "Generic Configuration Plugin"; } |
25 |
|
|
} |
26 |
|
|
public override string Description |
27 |
|
|
{ |
28 |
|
|
get { return "This plugin provides a generic configuration"; } |
29 |
|
|
} |
30 |
|
|
#endregion |
31 |
william |
81 |
} |
32 |
|
|
} |