ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/GenericConfig.cs
(Generate patch)

Comparing trunk/RomCheater.CorePlugins/Config/GenericConfig.cs (file contents):
Revision 83 by william, Wed May 9 17:48:15 2012 UTC vs.
Revision 86 by william, Wed May 9 19:41:06 2012 UTC

# Line 9 | Line 9 | namespace RomCheater.CorePlugins.Config
9   {
10      public sealed class GenericConfig : ConfigPlugin
11      {
12 <        public GenericConfig() : base() { }
12 >        public GenericConfig()
13 >            : base()
14 >        {
15 >            init();
16 >        }
17  
18          private void init()
19          {
16            this.ValidProcessesForPlugin = new List<Process>();
17
20              Process[] procs = Process.GetProcesses();
21              this.ValidProcessesForPlugin = new List<Process>(procs);
22 +            Guid t = this.Id;
23          }
24          #region IPluginBase Members
25 +        public override Guid Id
26 +        {
27 +            get
28 +            {
29 +                return new GuidGenerator(typeof(GenericConfig).FullName).Guid;
30 +            }
31 +        }
32          public override string Name
33          {
34              get { return "Generic Configuration Plugin"; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines