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

com.sucy.skill.api.event.PlayerComboStepEvent 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.3.1-R1
Show newest version
package com.sucy.skill.api.event;

import com.sucy.skill.api.player.PlayerCombos;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import org.jetbrains.annotations.NotNull;

public class PlayerComboStepEvent extends Event {
    private static final HandlerList handlers = new HandlerList();

    private final PlayerCombos playerCombos;

    public PlayerComboStepEvent(PlayerCombos playerCombos) {
        this.playerCombos = playerCombos;
    }

    @Override
    @NotNull
    public HandlerList getHandlers() {
        return handlers;
    }

    public static HandlerList getHandlerList() {
        return handlers;
    }

    public PlayerCombos getPlayerCombos() {return playerCombos;}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy