mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
18 lines
401 B
C#
18 lines
401 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Warship;
|
|
|
|
public class PacketSetWarshipAvatarRsp : BasePacket
|
|
{
|
|
public PacketSetWarshipAvatarRsp() : base(CmdIds.SetWarshipAvatarRsp)
|
|
{
|
|
var proto = new SetWarshipAvatarRsp
|
|
{
|
|
Retcode = SetWarshipAvatarRsp.Types.Retcode.Succ,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|