mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -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;
|
||||
}
|
||||
|
||||
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
|
||||
public bool GetEventFlag(int flagNumber)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user