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