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

10 lines
No EOL
239 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Quicklist;
public class QuicklistSwapEvent : PlayerEvent
{
public short Tab { get; init; }
public short FromSlot { get; init; }
public short ToSlot { get; init; }
}