mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
17 lines
428 B
C#
17 lines
428 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Player
|
|
{
|
|
public class PacketPlayerKickOutScNotify : BasePacket
|
|
{
|
|
public PacketPlayerKickOutScNotify() : base(CmdIds.PlayerKickOutScNotify)
|
|
{
|
|
var proto = new PlayerKickOutScNotify()
|
|
{
|
|
KickType = KickType.KickByGm,
|
|
};
|
|
SetData(proto);
|
|
}
|
|
}
|
|
}
|