ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs (file contents):
Revision 275 by william, Sun Jun 3 22:01:05 2012 UTC vs.
Revision 276 by william, Sun Jun 3 22:04:37 2012 UTC

--- trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs	2012/06/03 22:01:05	275
+++ trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs	2012/06/03 22:04:37	276
@@ -5,9 +5,9 @@ using System.Text;
 
 namespace RomCheater.PluginFramework.Events
 {
-    public interface IAcceptsExternalMemoryAddress
+    public interface IBrowseMemoryRegion
     {
-        bool AcceptExternalMemoryAddress(int address);
+        bool BrowseMemoryRegion(int MemoryRegion);
     }
 
     public interface IAcceptsBrowseMemoryRegion
@@ -17,16 +17,16 @@ namespace RomCheater.PluginFramework.Eve
 
     public interface IBrowseMemoryRegionEvent
     {
-        int Address { get; }
+        int MemoryRegion { get; }
     }
     public class BrowseMemoryRegionEvent : BaseEventArgs, IBrowseMemoryRegionEvent
     {
         public BrowseMemoryRegionEvent() : this(0) { }
         public BrowseMemoryRegionEvent(object sender) : this(0, sender) { }
-        public BrowseMemoryRegionEvent(int address) : base() { this.Address = address; }
-        public BrowseMemoryRegionEvent(int address, object sender) : base(sender) { this.Address = address; }
+        public BrowseMemoryRegionEvent(int memoryRegion) : base() { this.MemoryRegion = memoryRegion; }
+        public BrowseMemoryRegionEvent(int memoryRegion, object sender) : base(sender) { this.MemoryRegion = memoryRegion; }
         #region IBrowseMemoryRegionEvent members
-        public int Address { get; private set; }
+        public int MemoryRegion { get; private set; }
         #endregion
     }
 }