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

Comparing trunk/RomCheater.PluginFramework/Core/PluginBase.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/PluginBase.cs	2012/05/09 17:48:15	83
+++ trunk/RomCheater.PluginFramework/Core/PluginBase.cs	2012/05/09 19:41:06	86
@@ -11,9 +11,15 @@ namespace RomCheater.PluginFramework.Cor
     /// </summary>
     public abstract class PluginBase : IPluginBase
     {
+        public PluginBase() { }
         #region IPluginBase Members
+        public abstract Guid Id { get; }
         public abstract string Name { get; }
         public abstract string Description { get; }
         #endregion
+        public override string ToString()
+        {
+            return string.Format("[name={0} description={1}]", Name,Description);
+        }
     }
 }