using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Sojaner.MemoryScanner.MemoryProviers { public interface IPatchMemory { bool PatchMemory(ulong address, byte value); bool PatchMemory(ulong address, sbyte value); bool PatchMemory(ulong address, ushort value); bool PatchMemory(ulong address, short value); bool PatchMemory(ulong address, uint value); bool PatchMemory(ulong address, int value); bool PatchMemory(ulong address, ulong value); bool PatchMemory(ulong address, long value); } }