Parent Directory
|
Revision Log
plugin wip
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using RomCheater.PluginFramework.Interfaces; |
6 | |
7 | namespace RomCheater.PluginFramework.Core |
8 | { |
9 | /// <summary> |
10 | /// The base class for all plugins |
11 | /// </summary> |
12 | public abstract class PluginBase : IPluginBase |
13 | { |
14 | #region IPluginBase Members |
15 | public abstract string Name { get; } |
16 | public abstract string Description { get; } |
17 | #endregion |
18 | } |
19 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |