Moved MinMaxTicTacToe.java to its own ai package. Added unittests for math classes.

This commit is contained in:
lieght
2025-09-20 17:26:12 +02:00
parent 804a803027
commit f378897769
4 changed files with 96 additions and 2 deletions

View File

@@ -1,8 +1,9 @@
package org.toop.game.tictactoe;
package org.toop.game.tictactoe.ai;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.toop.game.*;
import org.toop.game.tictactoe.TicTacToe;
public class MinMaxTicTacToe {