# | Line 11 | Line 11 | namespace RomCheater.PluginFramework.Cor | |
---|---|---|
11 | /// </summary> | |
12 | public abstract class PluginBase : IPluginBase | |
13 | { | |
14 | + | public PluginBase() { } |
15 | #region IPluginBase Members | |
16 | + | public abstract Guid Id { get; } |
17 | public abstract string Name { get; } | |
18 | public abstract string Description { get; } | |
19 | #endregion | |
20 | + | public override string ToString() |
21 | + | { |
22 | + | return string.Format("{0} [{1}]", Name, Id.ToString()); |
23 | + | } |
24 | } | |
25 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |