1 |
william |
231 |
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 |
william |
398 |
public class GenericMemoryProvider : BaseMemoryProvider, IDisposable |
11 |
william |
231 |
{ |
12 |
|
|
public GenericMemoryProvider() : base() { } |
13 |
|
|
public GenericMemoryProvider(IConfigPlugin config) : base(config) { } |
14 |
|
|
public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config,process) { } |
15 |
william |
258 |
public GenericMemoryProvider(IAcceptsProcessAndConfig pconfig) : base(pconfig) { } |
16 |
william |
231 |
} |
17 |
|
|
} |