Remove unused BendingAbility Class

This is now the Ability Module Class
This commit is contained in:
MistPhizzle 2014-07-14 10:59:41 -04:00
parent 8fd403bcbd
commit 9a151f8ef3

View file

@ -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();
}