Matias Mas Viehl 2025-01-04 15:59:34 +01:00
parent b69dc9fcb1
commit 63089a832a
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package Logik;
public class Main {
public static void main(String[] args) {
try {
TicTacToe ttt = new TicTacToe();
} catch (Exception e) {
e.printStackTrace();
}
}
}