server-master/srcs/WingsAPI.Packets/ClientPackets/GboxPacket.cs
2026-02-10 18:21:30 +01:00

21 lines
No EOL
415 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("gbox")]
public class GboxPacket : ClientPacket
{
[PacketIndex(0)]
public BankActionType Type { get; set; }
[PacketIndex(1)]
public long Amount { get; set; }
[PacketIndex(2)]
public byte Option { get; set; }
}
}