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

8 lines
No EOL
169 B
C#

namespace WingsEmu.Game.Monster;
public class Waypoint
{
public short X { get; init; }
public short Y { get; init; }
public int WaitTime { get; init; }
}