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

# Line 13 | Line 13 | namespace RomCheater.PluginFramework.Cor
13      {
14          public PluginBase() { }
15          #region IPluginBase Members
16 <        public abstract Guid Id { get; }
16 >        public abstract Guid ID { get; }
17          public abstract string Name { get; }
18          public abstract string Description { get; }
19          public abstract void Reload();
20          #endregion
21          public override string ToString()
22          {
23 <            return string.Format("{0} [{1}]", Name, Id.ToString());
23 >            return string.Format("{0} [{1}]", Name, ID.ToString());
24          }
25      }
26   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines