--- trunk/RomCheater.PluginFramework/Core/InputPlugin.cs 2012/05/09 17:15:33 79 +++ trunk/RomCheater.PluginFramework/Core/InputPlugin.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 { /// <summary> /// Base class for all input plugins /// </summary> - public abstract class InputPlugin : PluginBase + public abstract class InputPlugin : PluginBase, IInputPlugin { + public InputPlugin() : base() { } + public override Guid Id + { + get { return new Guid(); } + } + public override string Name + { + get + { + return "Unknown Input Plugin"; + } + } + public override string Description + { + get + { + return ""; + } + } } } |