mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
19 lines
436 B
C#
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);
|
|
}
|
|
}
|