improved java docs

This commit is contained in:
Leonardo Brandenberger
2022-03-25 20:51:27 +01:00
parent 48675b0ca5
commit 00debf7fa5
4 changed files with 30 additions and 23 deletions
@@ -200,13 +200,13 @@ class GameTest {
}
/**
* This Class is used to communicate with the UserInterface. It overrides crucial methods and returns an instruction based on the instructions data field.
* This Class is used to communicate with the UserInterface. It overrides crucial methods and returns an instruction based on the instructions' data field.
* To implement the right instructions the user has to be aware of the game sequence.
*/
private class interFace extends UserInterface {
private PositionVector.Direction[] directions;
private Integer[] instructions;
private final PositionVector.Direction[] directions;
private final Integer[] instructions;
private int pointerDir,pointerInstruction;