Revision: | 256 |
Committed: | Sun Jun 3 16:50:16 2012 UTC (10 years, 9 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) |
# | 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 | william | 256 | bool AcceptExternalMemoryAddress(int address); |
11 | william | 206 | } |
12 | } |