1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace RomCheater.PluginFramework.Core |
7 |
{ |
8 |
#region Null Plugins |
9 |
public class NullInputPlugin : InputPlugin |
10 |
{ |
11 |
public NullInputPlugin() : base() { } |
12 |
public override Guid ID |
13 |
{ |
14 |
get { return new Guid(); } |
15 |
} |
16 |
public override string Name |
17 |
{ |
18 |
get |
19 |
{ |
20 |
return "Null Input Plugin"; |
21 |
} |
22 |
} |
23 |
public override string Description |
24 |
{ |
25 |
get |
26 |
{ |
27 |
return ""; |
28 |
} |
29 |
} |
30 |
} |
31 |
public class NullWindowPlugin : WindowPlugin |
32 |
{ |
33 |
public NullWindowPlugin() : base() { } |
34 |
public override Guid ID |
35 |
{ |
36 |
get { return new Guid(); } |
37 |
} |
38 |
public override string Name |
39 |
{ |
40 |
get |
41 |
{ |
42 |
return "Null Input Plugin"; |
43 |
} |
44 |
} |
45 |
public override string Description |
46 |
{ |
47 |
get |
48 |
{ |
49 |
return ""; |
50 |
} |
51 |
} |
52 |
} |
53 |
#endregion |
54 |
} |