Add x/y coordinates for SAV3

This commit is contained in:
Kurt 2026-03-01 22:26:22 -06:00
parent bd9f64b07e
commit 51a012ff78

View File

@ -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)
{