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

studio.magemonkey.fabled.api.particle.IParticleEffect Maven / Gradle / Ivy

Go to download

A Minecraft Bukkit plugin aiming to provide an easy code API and skill editor for all server owners to create unique and fully custom classes and skills.

There is a newer version: 1.0.0-R1
Show newest version
package studio.magemonkey.fabled.api.particle;

import org.bukkit.Location;

/**
 * A particle effect that can be played
 */
public interface IParticleEffect {
    /**
     * @return time between each frame in ticks
     */
    int getInterval();

    /**
     * @return name of the effect
     */
    String getName();

    void play(Location loc, int frame, int level);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy