package emu.grasscutter.server.packet.send; import emu.grasscutter.net.packet.BasePacket; import emu.grasscutter.net.packet.PacketOpcodes; import emu.grasscutter.net.proto.DelTeamEntityNotifyOuterClass.DelTeamEntityNotify; import java.util.List; public class PacketDelTeamEntityNotify extends BasePacket { public PacketDelTeamEntityNotify(int sceneId, int teamEntityId) { super(PacketOpcodes.DelTeamEntityNotify); DelTeamEntityNotify proto = DelTeamEntityNotify.newBuilder() .setSceneId(sceneId) .addDelEntityIdList(teamEntityId) .build(); this.setData(proto); } public PacketDelTeamEntityNotify(int sceneId, List list) { super(PacketOpcodes.DelTeamEntityNotify); DelTeamEntityNotify proto = DelTeamEntityNotify.newBuilder().setSceneId(sceneId).addAllDelEntityIdList(list).build(); this.setData(proto); } }