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

10 lines
No EOL
193 B
C#

using System;
namespace WingsEmu.Game.Helpers;
public class MapLocation
{
public Guid MapInstanceId { get; init; }
public short X { get; init; }
public short Y { get; init; }
}