Declaration of class Input and Input_Attack (cf class Diagram)

This commit is contained in:
keizaal 2021-05-26 23:38:14 +02:00
parent 0d1b6de5ad
commit 6b97ca6046
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package input;
public class Input {
public Boolean[] tab = new Boolean[8];
}

View File

@ -0,0 +1,7 @@
package input;
import java.util.ArrayList;
public class Input_Attack {
public ArrayList<Input> input_list;
}