2021-05-27 13:43:42 +02:00
|
|
|
package Actions;
|
2021-05-27 14:26:14 +02:00
|
|
|
import input.*;
|
2021-05-27 13:43:42 +02:00
|
|
|
|
|
|
|
public class Attack {
|
2021-05-27 15:00:20 +02:00
|
|
|
/**
|
|
|
|
* Defines if the attack is a special one (E.G. a fireball) or a normal one (a punch)
|
|
|
|
*/
|
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;
|
|
|
|
|
2021-05-27 13:43:42 +02:00
|
|
|
}
|