12 lines
265 B
Java
12 lines
265 B
Java
package input;
|
|
|
|
public class Input {
|
|
/*
|
|
* A tab where each element represent a possible input
|
|
* (UP, Down, Right, Left, A, B, C, D)
|
|
* if the value at the corresponding index is true, then the input is pressed
|
|
*/
|
|
public Boolean[] tab = new Boolean[8];
|
|
|
|
}
|