Files
KianaBH3/GameServer/Server/Packet/Send/MasterPupil/PacketGetMasterPupilApplyRsp.cs
2025-06-14 11:15:32 +08:00

19 lines
436 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.MasterPupil;
public class PacketGetMasterPupilApplyRsp : BasePacket
{
public PacketGetMasterPupilApplyRsp() : base(CmdIds.GetMasterPupilApplyRsp)
{
// TODO: Hardcoded
var proto = new GetMasterPupilApplyRsp
{
Type = MasterPupilType.MasterPupilMasterType
};
SetData(proto);
}
}