mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
Remove unused BendingAbility Class
This is now the Ability Module Class
This commit is contained in:
parent
8fd403bcbd
commit
9a151f8ef3
1 changed files with 0 additions and 27 deletions
|
@ -1,27 +0,0 @@
|
||||||
package com.projectkorra.ProjectKorra.Ability;
|
|
||||||
|
|
||||||
import com.projectkorra.ProjectKorra.Element;
|
|
||||||
|
|
||||||
public interface BendingAbility {
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The Description that will show when /bending help is used.
|
|
||||||
*/
|
|
||||||
public String getDescription();
|
|
||||||
/*
|
|
||||||
* The name of the ability for /bending display
|
|
||||||
*/
|
|
||||||
public String getAbilityName();
|
|
||||||
/*
|
|
||||||
* What element is required to Bend the element?
|
|
||||||
*/
|
|
||||||
public Element getElement();
|
|
||||||
/*
|
|
||||||
* Begins the Ability.
|
|
||||||
*/
|
|
||||||
public void start();
|
|
||||||
/*
|
|
||||||
* Progresses the ability.
|
|
||||||
*/
|
|
||||||
public void progressAll();
|
|
||||||
}
|
|
Loading…
Reference in a new issue