15 lines
294 B
Java
Raw Normal View History

package Actions;
2021-05-27 14:26:14 +02:00
import input.*;
public class Attack {
2021-05-27 14:26:14 +02:00
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;
}