ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/DolphinConfig.cs
Revision: 93
Committed: Wed May 9 22:23:18 2012 UTC (11 years, 6 months ago) by william
File size: 997 byte(s)
Log Message:

File Contents

# Content
1 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 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 }
36 }