ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs
Revision: 256
Committed: Sun Jun 3 16:50:16 2012 UTC (11 years, 3 months ago) by william
File size: 268 byte(s)
Log Message:
UIMemoryViewer:
* re-enable GetFirstNonZeroByte()
+ make code changes that were not implemented (due to GetFirstNonZeroByte() being disabled)

File Contents

# Content
1 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(int address);
11 }
12 }