ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/GenericMemoryProvider.cs
Revision: 686
Committed: Mon Jun 17 09:31:52 2013 UTC (9 years, 9 months ago) by william
File size: 616 byte(s)
Log Message:
+ massive move of source files

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Diagnostics;
6 using RomCheater.Core;
7
8 namespace Sojaner.MemoryScanner.MemoryProviers
9 {
10 public class GenericMemoryProvider : BaseMemoryProvider, IDisposable
11 {
12 public GenericMemoryProvider() : base() { }
13 public GenericMemoryProvider(IConfigPlugin config) : base(config) { }
14 public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config,process) { }
15 public GenericMemoryProvider(IAcceptsProcessAndConfig pconfig) : base(pconfig) { }
16 }
17 }