ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/InputPlugin.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Core/InputPlugin.cs (file contents):
Revision 83 by william, Wed May 9 17:48:15 2012 UTC vs.
Revision 86 by william, Wed May 9 19:41:06 2012 UTC

--- trunk/RomCheater.PluginFramework/Core/InputPlugin.cs	2012/05/09 17:48:15	83
+++ trunk/RomCheater.PluginFramework/Core/InputPlugin.cs	2012/05/09 19:41:06	86
@@ -11,5 +11,24 @@ namespace RomCheater.PluginFramework.Cor
     /// </summary>
     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 "";
+            }
+        }
     }
 }