1 |
william |
79 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
william |
889 |
using RomCheater.Interfaces; |
6 |
william |
79 |
|
7 |
|
|
namespace RomCheater.PluginFramework.Core |
8 |
|
|
{ |
9 |
|
|
/// <summary> |
10 |
|
|
/// Base class for all window plugins |
11 |
|
|
/// </summary> |
12 |
william |
83 |
public abstract class WindowPlugin : PluginBase, IWindowPlugin |
13 |
william |
79 |
{ |
14 |
william |
86 |
public WindowPlugin() : base() { } |
15 |
william |
682 |
public override bool IsGenericPlugin { get { return false; } } |
16 |
|
|
public override bool IsNullPlugin { get { return false; } } |
17 |
william |
94 |
public override Guid ID |
18 |
william |
86 |
{ |
19 |
|
|
get { return new Guid(); } |
20 |
|
|
} |
21 |
|
|
public override string Name |
22 |
|
|
{ |
23 |
|
|
get |
24 |
|
|
{ |
25 |
|
|
return "Unknown Window Plugin"; |
26 |
|
|
} |
27 |
|
|
} |
28 |
|
|
public override string Description |
29 |
|
|
{ |
30 |
|
|
get |
31 |
|
|
{ |
32 |
|
|
return ""; |
33 |
|
|
} |
34 |
william |
682 |
} |
35 |
|
|
public override void Reload() |
36 |
|
|
{ |
37 |
|
|
} |
38 |
|
|
public override void Reload(bool silent) |
39 |
|
|
{ |
40 |
|
|
} |
41 |
william |
79 |
} |
42 |
|
|
} |