pretty cool

This commit is contained in:
2025-03-31 22:28:08 +02:00
parent 5598d4f5eb
commit 2c6b64fa7d
23 changed files with 363 additions and 24 deletions

View File

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