studio.magemonkey.fabled.api.particle.IParticleEffect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabled Show documentation
Show all versions of fabled Show documentation
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.
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);
}