mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
feat: add Abyss
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Endless;
|
||||
|
||||
public class PacketUltraEndlessEnterSiteRsp : BasePacket
|
||||
{
|
||||
public PacketUltraEndlessEnterSiteRsp(uint siteId) : base(CmdIds.UltraEndlessEnterSiteRsp)
|
||||
{
|
||||
var proto = new UltraEndlessEnterSiteRsp
|
||||
{
|
||||
SiteId = siteId
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user