Built a basic movement test, can't test because it doesn't recognize my gamepads.

This commit is contained in:
no
2021-06-10 11:50:38 +02:00
parent f56c84ef8e
commit 93f5727569
5 changed files with 227 additions and 117 deletions

View File

@ -17,7 +17,7 @@ public class Throw implements Action {
* For example, a Moonsault Press would be something like
* {{LEFT},{DOWN,LEFT},{DOWN},{DOWN,RIGHT},{RIGHT},{RIGHT,UP},{UP},{A}}
*/
private static ButtonIG[][] command;
private ButtonIG[][] command;
/**
* The different sections of the throw
@ -62,4 +62,10 @@ public class Throw implements Action {
public Throw() {
}
public Throw(boolean isSpecial, ButtonIG[][] command, ThrowPart[] parts) {
this.isSpecial = isSpecial;
this.command = command;
this.parts = parts;
}
}