2 |
using System.Collections.Generic; |
using System.Collections.Generic; |
3 |
using System.Linq; |
using System.Linq; |
4 |
using System.Text; |
using System.Text; |
5 |
|
using RomCheater.PluginFramework.Interfaces; |
6 |
|
|
7 |
namespace RomCheater.PluginFramework.Core |
namespace RomCheater.PluginFramework.Core |
8 |
{ |
{ |
9 |
/// <summary> |
/// <summary> |
10 |
/// Base class for all window plugins |
/// Base class for all window plugins |
11 |
/// </summary> |
/// </summary> |
12 |
public abstract class WindowPlugin : PluginBase |
public abstract class WindowPlugin : PluginBase, IWindowPlugin |
13 |
{ |
{ |
14 |
} |
} |
15 |
} |
} |