emu.grasscutter.server.packet.send.PacketCompoundDataNotify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grasscutter Show documentation
Show all versions of grasscutter Show documentation
A server software reimplementation for an anime game.
package emu.grasscutter.server.packet.send;
import emu.grasscutter.net.packet.*;
import emu.grasscutter.net.proto.CompoundDataNotifyOuterClass.CompoundDataNotify;
import emu.grasscutter.net.proto.CompoundQueueDataOuterClass.CompoundQueueData;
import java.util.*;
public class PacketCompoundDataNotify extends BasePacket {
public PacketCompoundDataNotify(
Set unlockedCompounds, List compoundQueueData) {
super(PacketOpcodes.CompoundDataNotify);
var proto =
CompoundDataNotify.newBuilder()
.addAllUnlockCompoundList(unlockedCompounds)
.addAllCompoundQueueDataList(compoundQueueData)
.build();
this.setData(proto);
}
}