mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
435 B
C#
18 lines
435 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Lineup
|
|
{
|
|
public class PacketSyncLineupNotify : BasePacket
|
|
{
|
|
public PacketSyncLineupNotify(Database.Lineup.LineupInfo info) : base(CmdIds.SyncLineupNotify)
|
|
{
|
|
var proto = new SyncLineupNotify()
|
|
{
|
|
Lineup = info.ToProto(),
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|
|
}
|