From 9a151f8ef34e06c4ad32bf9d91fde9ec2270915c Mon Sep 17 00:00:00 2001 From: MistPhizzle Date: Mon, 14 Jul 2014 10:59:41 -0400 Subject: [PATCH] Remove unused BendingAbility Class This is now the Ability Module Class --- .../ProjectKorra/Ability/BendingAbility.java | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/com/projectkorra/ProjectKorra/Ability/BendingAbility.java diff --git a/src/com/projectkorra/ProjectKorra/Ability/BendingAbility.java b/src/com/projectkorra/ProjectKorra/Ability/BendingAbility.java deleted file mode 100644 index 9ea14bfc..00000000 --- a/src/com/projectkorra/ProjectKorra/Ability/BendingAbility.java +++ /dev/null @@ -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(); -}