Implement Nim game logic and heuristics, including board, moves, roles, and AI algorithms

This commit is contained in:
kerboul
2026-04-08 15:00:04 +02:00
committed by kerboul
parent 6f90c96789
commit 9d6a155eb4
8 changed files with 348 additions and 1 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
.PHONY: build dominos nim clean
JAR = build/libs/iialib.jar
build:
gradle build
dominos: $(JAR)
java -cp $(JAR) games.dominos.DominosGame
nim: $(JAR)
java -cp $(JAR) games.nim.NimGame
$(JAR):
gradle build
clean:
gradle clean