Initial commit — sujet TP1 IIA (Minimax / Alpha-Beta)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kerboul
2026-04-07 14:41:05 +02:00
commit 9700af5c65
22 changed files with 885 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package games.dominos;
import iialib.games.model.IRole;
public enum DominosRole implements IRole{
HORIZONTAL, // For the player playing its tiles hally
VERTICAL // For the player playing its tiles vertically
}