expose Current value in IMiniWatchDetails
This commit is contained in:
parent
b90e40ae5c
commit
e09bfa8ca9
|
@ -9,6 +9,7 @@ namespace BizHawk.Client.Common.RamSearchEngine
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal interface IMiniWatchDetails : IMiniWatch
|
internal interface IMiniWatchDetails : IMiniWatch
|
||||||
{
|
{
|
||||||
|
uint Current { get; }
|
||||||
int ChangeCount { get; }
|
int ChangeCount { get; }
|
||||||
void ClearChangeCount();
|
void ClearChangeCount();
|
||||||
void Update(PreviousType type, MemoryDomain domain, bool bigEndian);
|
void Update(PreviousType type, MemoryDomain domain, bool bigEndian);
|
||||||
|
@ -28,6 +29,8 @@ namespace BizHawk.Client.Common.RamSearchEngine
|
||||||
_previous = _current;
|
_previous = _current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public uint Current => _current;
|
||||||
|
|
||||||
public int ChangeCount { get; private set; }
|
public int ChangeCount { get; private set; }
|
||||||
|
|
||||||
public void Update(PreviousType type, MemoryDomain domain, bool bigEndian)
|
public void Update(PreviousType type, MemoryDomain domain, bool bigEndian)
|
||||||
|
@ -108,6 +111,8 @@ namespace BizHawk.Client.Common.RamSearchEngine
|
||||||
_previous = _current;
|
_previous = _current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public uint Current => _current;
|
||||||
|
|
||||||
public int ChangeCount { get; private set; }
|
public int ChangeCount { get; private set; }
|
||||||
|
|
||||||
public void Update(PreviousType type, MemoryDomain domain, bool bigEndian)
|
public void Update(PreviousType type, MemoryDomain domain, bool bigEndian)
|
||||||
|
|
Loading…
Reference in New Issue