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:
18
GameServer/Server/Packet/Send/Test/PacketGetWikiDataRsp.cs
Normal file
18
GameServer/Server/Packet/Send/Test/PacketGetWikiDataRsp.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Test;
|
||||
|
||||
public class PacketGetWikiDataRsp : BasePacket
|
||||
{
|
||||
public PacketGetWikiDataRsp() : base(CmdIds.GetWikiDataRsp)
|
||||
{
|
||||
var proto = new GetWikiDataRsp
|
||||
{
|
||||
HasTakeActivitySuitRewardList = { 132 },
|
||||
HasTakeRatingRewardList = { 1, 2, 3, 4, 5, 6 }
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user