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 |
public abstract class UserControlPlugin : PluginBase, IUserControlPlugin |
10 |
{ |
11 |
public UserControlPlugin() { } |
12 |
|
13 |
public override Guid ID |
14 |
{ |
15 |
get { return new Guid(); } |
16 |
} |
17 |
public override string Name |
18 |
{ |
19 |
get |
20 |
{ |
21 |
return "Unknown UserControl Plugin"; |
22 |
} |
23 |
} |
24 |
public override string Description |
25 |
{ |
26 |
get |
27 |
{ |
28 |
return ""; |
29 |
} |
30 |
} |
31 |
} |
32 |
} |