ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/PluginBase.cs
Revision: 86
Committed: Wed May 9 19:41:06 2012 UTC (11 years, 1 month ago) by william
File size: 714 byte(s)
Log Message:
+ add support to set plugins in user settings

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using RomCheater.PluginFramework.Interfaces;
6
7 namespace RomCheater.PluginFramework.Core
8 {
9 /// <summary>
10 /// The base class for all plugins
11 /// </summary>
12 public abstract class PluginBase : IPluginBase
13 {
14 public PluginBase() { }
15 #region IPluginBase Members
16 public abstract Guid Id { get; }
17 public abstract string Name { get; }
18 public abstract string Description { get; }
19 #endregion
20 public override string ToString()
21 {
22 return string.Format("[name={0} description={1}]", Name,Description);
23 }
24 }
25 }