29 lines
No EOL
577 B
C#
29 lines
No EOL
577 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("guri")]
|
|
public class GuriPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(0)]
|
|
public int Type { get; set; }
|
|
|
|
[PacketIndex(1)]
|
|
public int Argument { get; set; }
|
|
|
|
[PacketIndex(2)]
|
|
public long? User { get; set; }
|
|
|
|
[PacketIndex(3)]
|
|
public long? Data { get; set; }
|
|
|
|
[PacketIndex(4, serializeToEnd: true)]
|
|
public string Value { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |