mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
25 lines
633 B
C#
25 lines
633 B
C#
using EggLink.DanhengServer.Proto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Avatar
|
|
{
|
|
public class PacketAddAvatarScNotify : BasePacket
|
|
{
|
|
public PacketAddAvatarScNotify(int avatarId) : base(CmdIds.AddAvatarScNotify)
|
|
{
|
|
var packet = new AddAvatarScNotify()
|
|
{
|
|
BaseAvatarId = (uint)avatarId,
|
|
IsNew = true,
|
|
Src = AddAvatarSrcState.AddAvatarSrcGacha,
|
|
};
|
|
|
|
SetData(packet);
|
|
}
|
|
}
|
|
}
|