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