--- trunk/RomCheater.PluginFramework/Core/PluginBase.cs 2012/05/09 17:48:05 82 +++ trunk/RomCheater.PluginFramework/Core/PluginBase.cs 2012/05/09 17:48:15 83 @@ -2,13 +2,18 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using RomCheater.PluginFramework.Interfaces; namespace RomCheater.PluginFramework.Core { /// <summary> /// The base class for all plugins /// </summary> - public abstract class PluginBase + public abstract class PluginBase : IPluginBase { + #region IPluginBase Members + public abstract string Name { get; } + public abstract string Description { get; } + #endregion } } |