1 |
william |
93 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
|
|
using RomCheater.PluginFramework.Core; |
6 |
|
|
|
7 |
|
|
namespace RomCheater.CorePlugins.Config |
8 |
|
|
{ |
9 |
william |
147 |
//public sealed class DolphinConfig : ConfigPlugin |
10 |
|
|
//{ |
11 |
|
|
// public DolphinConfig() : base() { } |
12 |
|
|
// public DolphinConfig(bool doinit) : base(doinit) { } |
13 |
|
|
// protected override bool IsNotValidProcess(ProcContainer p) |
14 |
|
|
// { |
15 |
|
|
// return true; |
16 |
|
|
// } |
17 |
|
|
// #region IPluginBase Members |
18 |
|
|
// public override Guid ID |
19 |
|
|
// { |
20 |
|
|
// get |
21 |
|
|
// { |
22 |
|
|
// return new GuidGenerator(typeof(DolphinConfig).FullName).Guid; |
23 |
|
|
// } |
24 |
|
|
// } |
25 |
|
|
// public override string Name |
26 |
|
|
// { |
27 |
|
|
// get { return "Dolphin Configuration Plugin"; } |
28 |
|
|
// } |
29 |
|
|
// public override string Description |
30 |
|
|
// { |
31 |
|
|
// get { return "This plugin provides a configuration suitable for use with Dolphin"; } |
32 |
|
|
// } |
33 |
|
|
// #endregion |
34 |
|
|
//} |
35 |
william |
93 |
} |