# | Line 9 | Line 9 | namespace RomCheater.PluginFramework.Int | |
---|---|---|
9 | #region IPluginBase | |
10 | public interface IPluginBase | |
11 | { | |
12 | + | Guid Id { get; } |
13 | string Name { get;} | |
14 | string Description { get; } | |
15 | + | string ToString(); |
16 | } | |
17 | #endregion | |
18 | #region IConfigPlugin | |
# | Line 36 | Line 38 | namespace RomCheater.PluginFramework.Int | |
38 | List<IConfigPlugin> LoadedConfigPlugins { get; } | |
39 | List<IInputPlugin> LoadedInputPlugins { get; } | |
40 | List<IWindowPlugin> LoadedWindowPlugins { get; } | |
41 | + | string ToString(); |
42 | } | |
43 | #endregion | |
44 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |