Initial commit

This commit is contained in:
eqb
2025-08-25 10:04:03 +00:00
commit 4607bbc33f
9 changed files with 325 additions and 0 deletions

15
play.py Normal file
View File

@@ -0,0 +1,15 @@
from yahtzee import Yahtzee
from yahtzee_goals import (
GoalOnes,
GoalTwos,
GoalThrees,
)
goals = [
GoalOnes(),
GoalTwos(),
GoalThrees(),
]
game = Yahtzee(goals)
game.play()