server-master/srcs/WingsAPI.Scripting/Object/Raid/SWaypoint.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
258 B
C#

using WingsAPI.Scripting.Attribute;
namespace WingsAPI.Scripting.Object.Raid
{
[ScriptObject]
public class SWaypoint
{
public short X { get; set; }
public short Y { get; set; }
public int WaitTime { get; set; }
}
}