Files
3DChess/app/src/main/java/chess/App.java
2025-03-24 11:17:32 +01:00

17 lines
296 B
Java

/*
* This Java source file was generated by the Gradle 'init' task.
*/
package chess;
import chess.view.render2D.Window;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
Window.main(args);
}
}