--- trunk/RomCheater.CorePlugins/Config/DolphinConfig.cs 2012/05/09 22:23:18 93 +++ trunk/RomCheater.CorePlugins/Config/DolphinConfig.cs 2012/05/27 23:05:18 147 @@ -6,31 +6,30 @@ using RomCheater.PluginFramework.Core; namespace RomCheater.CorePlugins.Config { - public sealed class DolphinConfig : ConfigPlugin - { - public DolphinConfig() : base() { } - public DolphinConfig(bool doinit) : base(doinit) { } - - protected override bool IsNotValidProcess(ProcContainer p) - { - return true; - } - #region IPluginBase Members - public override Guid Id - { - get - { - return new GuidGenerator(typeof(DolphinConfig).FullName).Guid; - } - } - public override string Name - { - get { return "Dolphin Configuration Plugin"; } - } - public override string Description - { - get { return "This plugin provides a configuration suitable for use with Dolphin"; } - } - #endregion - } + //public sealed class DolphinConfig : ConfigPlugin + //{ + // public DolphinConfig() : base() { } + // public DolphinConfig(bool doinit) : base(doinit) { } + // protected override bool IsNotValidProcess(ProcContainer p) + // { + // return true; + // } + // #region IPluginBase Members + // public override Guid ID + // { + // get + // { + // return new GuidGenerator(typeof(DolphinConfig).FullName).Guid; + // } + // } + // public override string Name + // { + // get { return "Dolphin Configuration Plugin"; } + // } + // public override string Description + // { + // get { return "This plugin provides a configuration suitable for use with Dolphin"; } + // } + // #endregion + //} } |