--- trunk/RomCheater.PluginFramework/Core/WindowPlugin.cs 2012/05/09 17:15:33 79 +++ trunk/RomCheater.PluginFramework/Core/WindowPlugin.cs 2012/05/09 19:41:06 86 @@ -2,13 +2,33 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using RomCheater.PluginFramework.Interfaces; namespace RomCheater.PluginFramework.Core { /// /// Base class for all window plugins /// - public abstract class WindowPlugin : PluginBase + public abstract class WindowPlugin : PluginBase, IWindowPlugin { + public WindowPlugin() : base() { } + public override Guid Id + { + get { return new Guid(); } + } + public override string Name + { + get + { + return "Unknown Window Plugin"; + } + } + public override string Description + { + get + { + return ""; + } + } } }