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

net.minestom.server.snapshot.ChunkSnapshot Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.snapshot;

import net.minestom.server.instance.block.Block;
import net.minestom.server.tag.TagReadable;
import net.minestom.server.world.biome.Biome;
import org.jetbrains.annotations.NotNull;

import java.util.Collection;

public sealed interface ChunkSnapshot extends Snapshot, Block.Getter, Biome.Getter, TagReadable
        permits SnapshotImpl.Chunk {
    int chunkX();

    int chunkZ();

    @NotNull InstanceSnapshot instance();

    @NotNull Collection<@NotNull EntitySnapshot> entities();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy