Files
MikuSB/GameServer/Server/Packet/Send/Lineup/PacketNtfSyncLineup.cs
Naruse 4bf3f0d715 refactor manager & add giveall command
- giveall only weapon for now
- move all item into SyncPlayer to prevent RspLogin too large
2026-04-27 14:33:25 +08:00

20 lines
398 B
C#

using MikuSB.Database.Lineup;
using MikuSB.Proto;
using MikuSB.TcpSharp;
namespace MikuSB.GameServer.Server.Packet.Send.Lineup;
public class PacketNtfSyncLineup : BasePacket
{
public PacketNtfSyncLineup(LineupDataInfo lineup) : base(CmdIds.NtfSyncLineup)
{
var proto = new NtfSyncLineup
{
Lineup = lineup.ToProto()
};
SetData(proto);
}
}