diff --git a/GamePlay/Actions/Attack.java b/GamePlay/Actions/Attack.java index 5a3bbb9..7a55549 100644 --- a/GamePlay/Actions/Attack.java +++ b/GamePlay/Actions/Attack.java @@ -1,5 +1,14 @@ package Actions; +import input.*; public class Attack { - + private static boolean isSpecial; + + /** + * The suite of Inputs to have the move come out. + * For example, a classic fireball would be something like + * {{DOWN},{DOWN,RIGHT},{RIGHT},{A}} + */ + private static Button[][] command; + }