using System; using System.Collections.Generic; using System.Linq; using System.Text; using RomCheater.PluginFramework.Interfaces; using System.Diagnostics; namespace Sojaner.MemoryScanner.MemoryProviers { public class GenericMemoryProvider : BaseMemoryProvider, IDisposable { public GenericMemoryProvider() : base() { } public GenericMemoryProvider(IConfigPlugin config) : base(config) { } public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config,process) { } public GenericMemoryProvider(IAcceptsProcessAndConfig pconfig) : base(pconfig) { } } }