# | 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 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |