Initial commit

This commit is contained in:
2025-08-28 04:58:22 +00:00
commit 2ae337dcb7
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()