mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
20 lines
435 B
C#
20 lines
435 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Chat;
|
|
|
|
public class PacketChatworldGetActivityScheduleRsp : BasePacket
|
|
{
|
|
public PacketChatworldGetActivityScheduleRsp() : base(CmdIds.ChatworldGetActivityScheduleRsp)
|
|
{
|
|
// TODO: Hardcoded
|
|
|
|
var proto = new ChatworldGetActivityScheduleRsp
|
|
{
|
|
SceneId = 111
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|