server-master/srcs/WingsAPI.Game/Helpers/Location.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
264 B
C#

namespace WingsEmu.Game.Helpers;
public struct Location
{
public Location(int mapId, short x, short y)
{
MapId = mapId;
X = x;
Y = y;
}
public int MapId { get; }
public short X { get; }
public short Y { get; }
}