com.sucy.skill.task.ArmorStandTask 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.task;
import com.sucy.skill.api.armorstand.ArmorStandManager;
import com.sucy.skill.thread.RepeatThreadTask;
public class ArmorStandTask extends RepeatThreadTask {
public ArmorStandTask() {super(1, 1);}
@Override
public void run() {
ArmorStandManager.tick();
}
}