net.minestom.server.network.packet.client.play.ClientGenerateStructurePacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.network.packet.client.play;
import net.minestom.server.coordinate.Point;
import net.minestom.server.network.NetworkBuffer;
import net.minestom.server.network.NetworkBufferTemplate;
import net.minestom.server.network.packet.client.ClientPacket;
import org.jetbrains.annotations.NotNull;
import static net.minestom.server.network.NetworkBuffer.*;
public record ClientGenerateStructurePacket(@NotNull Point blockPosition,
int level, boolean keepJigsaws) implements ClientPacket {
public static final NetworkBuffer.Type SERIALIZER = NetworkBufferTemplate.template(
BLOCK_POSITION, ClientGenerateStructurePacket::blockPosition,
VAR_INT, ClientGenerateStructurePacket::level,
BOOLEAN, ClientGenerateStructurePacket::keepJigsaws,
ClientGenerateStructurePacket::new);
}