3 |
|
using System.Linq; |
4 |
|
using System.Text; |
5 |
|
using System.IO; |
6 |
+ |
using RomCheater.PluginFramework.Interfaces; |
7 |
|
|
8 |
|
namespace RomCheater.Docking.MemorySearch |
9 |
|
{ |
10 |
|
public interface IRangeComparer<T> |
11 |
|
{ |
12 |
|
//bool Compare(T Start, T End, T Value, SearchDataTypes bitsize); |
13 |
< |
bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, BinaryReader reader); |
13 |
> |
bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, IAcceptsProcessAndConfig pconfig); |
14 |
|
//bool Compare(T Start, T End, SearchDataTypes bitsize, bool unsigned, BinaryReader reader, T Value); |
15 |
|
} |
16 |
|
} |