1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using Utilities.TransparentControls; |
6 |
|
7 |
namespace RomCheater.Docking.MemorySearch |
8 |
{ |
9 |
public interface IOnlySearchType |
10 |
{ |
11 |
SearchDataTypes DataType { get; set; } |
12 |
bool IsUnsignedDataType { get; set; } |
13 |
SearchCompareTypes CompareType { get; set; } |
14 |
CompareValueTypes CompareValueType { get; set; } |
15 |
|
16 |
object CompareStartValue { get; set; } |
17 |
object CompareEndValue { get; set; } |
18 |
|
19 |
bool IsFirstSearch { get; set; } |
20 |
//List<ResultType<object>> Results { get; set; } |
21 |
} |
22 |
|
23 |
public interface ISearchType : IOnlySearchType |
24 |
{ |
25 |
void LogSearchOptions(); |
26 |
ProgressBarWithPercentageLabel ProgressLogger { get; set; } |
27 |
} |
28 |
} |