mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-26 18:47:11 -05:00
Add x/y coordinates for SAV3
This commit is contained in:
parent
bd9f64b07e
commit
51a012ff78
|
|
@ -407,6 +407,18 @@ public int PlayedFrames
|
||||||
set => Small[0x12] = (byte)value;
|
set => Small[0x12] = (byte)value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ushort X
|
||||||
|
{
|
||||||
|
get => ReadUInt16LittleEndian(Large);
|
||||||
|
set => WriteUInt16LittleEndian(Large, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ushort Y
|
||||||
|
{
|
||||||
|
get => ReadUInt16LittleEndian(Large[2..]);
|
||||||
|
set => WriteUInt16LittleEndian(Large[2..], value);
|
||||||
|
}
|
||||||
|
|
||||||
#region Event Flag/Event Work
|
#region Event Flag/Event Work
|
||||||
public bool GetEventFlag(int flagNumber)
|
public bool GetEventFlag(int flagNumber)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user