plateau qui tourne

This commit is contained in:
2025-03-19 15:20:03 +01:00
parent 719e2bfef7
commit faa92d09de
11 changed files with 696 additions and 4 deletions

View File

@@ -3,12 +3,14 @@
*/
package chess;
import chess.render.*;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
new Window().run();
}
}