com.sucy.skill.api.event.SignalEmitEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proskillapi Show documentation
Show all versions of proskillapi 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 com.sucy.skill.api.event;
import com.sucy.skill.api.skills.Skill;
import lombok.Getter;
import org.bukkit.entity.LivingEntity;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import java.util.List;
@Getter
public class SignalEmitEvent extends Event {
private static final HandlerList handlers = new HandlerList();
private final Skill skill;
private final LivingEntity emitter;
private final LivingEntity receiver;
private final String signal;
private final List