ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/GenericConfig.cs
Revision: 94
Committed: Wed May 9 22:31:56 2012 UTC (11 years, 7 months ago) by william
File size: 1006 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 using System.Diagnostics;
7 using System.Security.Principal;
8
9 namespace RomCheater.CorePlugins.Config
10 {
11 public sealed class GenericConfig : ConfigPlugin
12 {
13 public GenericConfig() : base() { }
14 public GenericConfig(bool doinit) : base(doinit) { }
15
16 protected override bool IsNotValidProcess(ProcContainer p) { return false; }
17 #region IPluginBase Members
18 public override Guid ID
19 {
20 get
21 {
22 return new GuidGenerator(typeof(GenericConfig).FullName).Guid;
23 }
24 }
25 public override string Name
26 {
27 get { return "Generic Configuration Plugin"; }
28 }
29 public override string Description
30 {
31 get { return "This plugin provides a generic configuration"; }
32 }
33 #endregion
34 }
35 }