com.sucy.skill.dynamic.mechanic.MechanicComponent 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.dynamic.mechanic;
import com.sucy.skill.dynamic.ComponentType;
import com.sucy.skill.dynamic.EffectComponent;
/**
* ProSkillAPI © 2023
* com.sucy.skill.dynamic.mechanic.MechanicComponent
*/
public abstract class MechanicComponent extends EffectComponent {
@Override
public ComponentType getType() {
return ComponentType.MECHANIC;
}
}