Now I think I'll write a console engine for Java for daggers, in C # I implemented it quite easily, because there is cursor control, but there was a problem with Java
public void cellDraw() { //отрисовка зависит от свойств //Пустая ячейка IsBlank if(this.IsBlank == true) { System.out.println("-----"); System.out.println("- -"); System.out.println("-----"); } //Крестик IsTic else if (this.IsTic == true) { System.out.println("-----"); System.out.println("- X -"); System.out.println("-----"); } The primitive blocks from hyphens are displayed, respectively, the next block should start with the N - position of the line in the console, the analogy in C # Console.SetCursorPosition(x,y) .