18 lines
391 B
Java
18 lines
391 B
Java
package Actions;
|
|
import input.*;
|
|
|
|
public class Attack {
|
|
/**
|
|
* Defines if the attack is a special one (E.G. a fireball) or a normal one (a punch)
|
|
*/
|
|
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;
|
|
|
|
}
|