ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs
Revision: 276
Committed: Sun Jun 3 22:04:37 2012 UTC (10 years, 9 months ago) by william
File size: 1090 byte(s)
Log Message:
+ rename members involved in BrowseMemoryRegion Contract

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 william 276 public interface IBrowseMemoryRegion
9 william 206 {
10 william 276 bool BrowseMemoryRegion(int MemoryRegion);
11 william 206 }
12 william 275
13     public interface IAcceptsBrowseMemoryRegion
14     {
15     BaseEventHandler<BrowseMemoryRegionEvent> OnBrowseMemoryRegion { get; set; }
16     }
17    
18     public interface IBrowseMemoryRegionEvent
19     {
20 william 276 int MemoryRegion { get; }
21 william 275 }
22     public class BrowseMemoryRegionEvent : BaseEventArgs, IBrowseMemoryRegionEvent
23     {
24     public BrowseMemoryRegionEvent() : this(0) { }
25     public BrowseMemoryRegionEvent(object sender) : this(0, sender) { }
26 william 276 public BrowseMemoryRegionEvent(int memoryRegion) : base() { this.MemoryRegion = memoryRegion; }
27     public BrowseMemoryRegionEvent(int memoryRegion, object sender) : base(sender) { this.MemoryRegion = memoryRegion; }
28 william 275 #region IBrowseMemoryRegionEvent members
29 william 276 public int MemoryRegion { get; private set; }
30 william 275 #endregion
31     }
32 william 206 }