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 92 by william, Wed May 9 21:42:21 2012 UTC vs.
Revision 94 by william, Wed May 9 22:31:56 2012 UTC

--- trunk/RomCheater.PluginFramework/Core/PluginBase.cs	2012/05/09 21:42:21	92
+++ trunk/RomCheater.PluginFramework/Core/PluginBase.cs	2012/05/09 22:31:56	94
@@ -13,14 +13,14 @@ namespace RomCheater.PluginFramework.Cor
     {
         public PluginBase() { }
         #region IPluginBase Members
-        public abstract Guid Id { get; }
+        public abstract Guid ID { get; }
         public abstract string Name { get; }
         public abstract string Description { get; }
         public abstract void Reload();
         #endregion
         public override string ToString()
         {
-            return string.Format("{0} [{1}]", Name, Id.ToString());
+            return string.Format("{0} [{1}]", Name, ID.ToString());
         }
     }
 }