Implementation of 2D mode

This commit is contained in:
Janet-Doe
2025-03-24 11:17:32 +01:00
parent faa92d09de
commit d720e16de0
13 changed files with 94 additions and 17 deletions

View File

@@ -3,7 +3,7 @@
*/
package chess;
import chess.render.*;
import chess.view.render2D.Window;
public class App {
public String getGreeting() {
@@ -11,6 +11,6 @@ public class App {
}
public static void main(String[] args) {
new Window().run();
Window.main(args);
}
}