1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace Sojaner.MemoryScanner.MemoryProviers |
7 |
{ |
8 |
public interface IPatchMemory |
9 |
{ |
10 |
bool PatchMemory(int address, byte value); |
11 |
bool PatchMemory(int address, sbyte value); |
12 |
bool PatchMemory(int address, ushort value); |
13 |
bool PatchMemory(int address, short value); |
14 |
bool PatchMemory(int address, uint value); |
15 |
bool PatchMemory(int address, int value); |
16 |
bool PatchMemory(int address, ulong value); |
17 |
bool PatchMemory(int address, long value); |
18 |
} |
19 |
} |