1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using RomCheater.PluginFramework.Interfaces; |
6 |
using System.Diagnostics; |
7 |
|
8 |
namespace Sojaner.MemoryScanner.MemoryProviers |
9 |
{ |
10 |
public class GenericMemoryProvider : BaseMemoryProvider |
11 |
{ |
12 |
public GenericMemoryProvider() : base() { } |
13 |
public GenericMemoryProvider(IConfigPlugin config) : base(config) { } |
14 |
public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config,process) { } |
15 |
public GenericMemoryProvider(IAcceptsProcessAndConfig config) : base(config) { } |
16 |
} |
17 |
|
18 |
#region MemoryScanner-r204 |
19 |
namespace r204 |
20 |
{ |
21 |
public class GenericMemoryProvider : Sojaner.MemoryScanner.MemoryProviers.r204.BaseMemoryProvider |
22 |
{ |
23 |
public GenericMemoryProvider() : base() { } |
24 |
public GenericMemoryProvider(IConfigPlugin config) : base(config) { } |
25 |
public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config, process) { } |
26 |
public GenericMemoryProvider(IAcceptsProcessAndConfig config) : base(config) { } |
27 |
} |
28 |
} |
29 |
#endregion |
30 |
} |