diff --git a/PKHeX.Core/Saves/SAV3.cs b/PKHeX.Core/Saves/SAV3.cs index f4d0a6a28..54394e073 100644 --- a/PKHeX.Core/Saves/SAV3.cs +++ b/PKHeX.Core/Saves/SAV3.cs @@ -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) {