Initial commit

This commit is contained in:
2025-09-01 14:21:10 +00:00
commit 131c9b1070
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()