mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 12:46:03 +08:00
16 lines
475 B
C#
16 lines
475 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
using Google.Protobuf.Collections;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.PlayerBoard;
|
|
|
|
public class PacketSetAssistAvatarScRsp : BasePacket
|
|
{
|
|
public PacketSetAssistAvatarScRsp(RepeatedField<uint> avatarId) : base(CmdIds.SetAssistAvatarScRsp)
|
|
{
|
|
var proto = new SetAssistAvatarScRsp();
|
|
proto.AvatarIdList.AddRange(avatarId);
|
|
|
|
SetData(proto);
|
|
}
|
|
} |