6 |
|
|
7 |
|
namespace RomCheater.CorePlugins.Config |
8 |
|
{ |
9 |
< |
public sealed class DolphinConfig : ConfigPlugin |
10 |
< |
{ |
11 |
< |
public DolphinConfig() : base() { } |
12 |
< |
public DolphinConfig(bool doinit) : base(doinit) { } |
13 |
< |
|
14 |
< |
protected override bool IsNotValidProcess(ProcContainer p) |
15 |
< |
{ |
16 |
< |
return true; |
17 |
< |
} |
18 |
< |
#region IPluginBase Members |
19 |
< |
public override Guid ID |
20 |
< |
{ |
21 |
< |
get |
22 |
< |
{ |
23 |
< |
return new GuidGenerator(typeof(DolphinConfig).FullName).Guid; |
24 |
< |
} |
25 |
< |
} |
26 |
< |
public override string Name |
27 |
< |
{ |
28 |
< |
get { return "Dolphin Configuration Plugin"; } |
29 |
< |
} |
30 |
< |
public override string Description |
31 |
< |
{ |
32 |
< |
get { return "This plugin provides a configuration suitable for use with Dolphin"; } |
33 |
< |
} |
34 |
< |
#endregion |
35 |
< |
} |
9 |
> |
//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 |
|
} |