All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.network.packet.client.play.ClientUpdateJigsawBlockPacket Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
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 static net.minestom.server.network.NetworkBuffer.BLOCK_POSITION;
import static net.minestom.server.network.NetworkBuffer.STRING;
import static net.minestom.server.network.NetworkBuffer.VAR_INT;

public record ClientUpdateJigsawBlockPacket(
        Point location,
        String name,
        String target,
        String pool,
        String finalState,
        String jointType,
        int selectionPriority,
        int placementPriority
) implements ClientPacket {
    public static final NetworkBuffer.Type SERIALIZER = NetworkBufferTemplate.template(
            BLOCK_POSITION, ClientUpdateJigsawBlockPacket::location,
            STRING, ClientUpdateJigsawBlockPacket::name,
            STRING, ClientUpdateJigsawBlockPacket::target,
            STRING, ClientUpdateJigsawBlockPacket::pool,
            STRING, ClientUpdateJigsawBlockPacket::finalState,
            STRING, ClientUpdateJigsawBlockPacket::jointType,
            VAR_INT, ClientUpdateJigsawBlockPacket::selectionPriority,
            VAR_INT, ClientUpdateJigsawBlockPacket::placementPriority,
            ClientUpdateJigsawBlockPacket::new);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy