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

File Contents

# User Rev Content
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     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 william 94 public override Guid ID
20 william 93 {
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     }