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

net.minestom.server.instance.ExplosionSupplier Maven / Gradle / Ivy

package net.minestom.server.instance;

import org.jglrxavpok.hephaistos.nbt.NBTCompound;

@FunctionalInterface
public interface ExplosionSupplier {

    /**
     * Creates a new explosion
     *
     * @param centerX        center X of the explosion
     * @param centerY        center Y of the explosion
     * @param centerZ        center Z of the explosion
     * @param strength       strength of the explosion
     * @param additionalData data passed via {@link Instance#explode(float, float, float, float, NBTCompound)} )}. Can be null
     * @return Explosion object representing the algorithm to use
     */
    Explosion createExplosion(float centerX, float centerY, float centerZ, float strength, NBTCompound additionalData);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy