--- trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/09 17:17:19 81 +++ trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/09 20:52:20 88 @@ -3,11 +3,33 @@ using System.Collections.Generic; using System.Linq; using System.Text; using RomCheater.PluginFramework.Core; +using System.Diagnostics; +using System.Security.Principal; namespace RomCheater.CorePlugins.Config { - public class GenericConfig : ConfigPlugin + public sealed class GenericConfig : ConfigPlugin { public GenericConfig() : base() { } + + + protected override bool IsNotValidProcess(ProcContainer p) { return false; } + #region IPluginBase Members + public override Guid Id + { + get + { + return new GuidGenerator(typeof(GenericConfig).FullName).Guid; + } + } + public override string Name + { + get { return "Generic Configuration Plugin"; } + } + public override string Description + { + get { return "This plugin provides a generic configuration"; } + } + #endregion } } |