mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-16 14:54:38 +01:00
Init enter game
This commit is contained in:
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCAvatarRsp.cs
Normal file
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCAvatarRsp.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.DLC;
|
||||
|
||||
public class PacketGetDLCAvatarRsp : BasePacket
|
||||
{
|
||||
public PacketGetDLCAvatarRsp() : base(CmdIds.GetDLCAvatarRsp)
|
||||
{
|
||||
var proto = new GetDLCAvatarRsp
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCRsp.cs
Normal file
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCRsp.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.DLC;
|
||||
|
||||
public class PacketGetDLCRsp : BasePacket
|
||||
{
|
||||
public PacketGetDLCRsp() : base(CmdIds.GetDLCRsp)
|
||||
{
|
||||
var proto = new GetDLCRsp
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCTowerRsp.cs
Normal file
17
GameServer/Server/Packet/Send/DLC/PacketGetDLCTowerRsp.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.DLC;
|
||||
|
||||
public class PacketGetDLCTowerRsp : BasePacket
|
||||
{
|
||||
public PacketGetDLCTowerRsp() : base(CmdIds.GetDLCTowerRsp)
|
||||
{
|
||||
var proto = new GetDLCTowerRsp
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user