ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs
Revision: 206
Committed: Thu May 31 09:31:57 2012 UTC (11 years, 6 months ago) by william
File size: 269 byte(s)
Log Message:
+ add support for memory view to accept a memory address externally

File Contents

# User Rev Content
1 william 206 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6     namespace RomCheater.PluginFramework.Events
7     {
8     public interface IAcceptsExternalMemoryAddress
9     {
10     bool AcceptExternalMemoryAddress(uint address);
11     }
12     }