Initial commit

This commit is contained in:
Chris Proctor
2023-08-14 17:56:00 -04:00
parent a969f5147f
commit edfb6f3515
8 changed files with 299 additions and 0 deletions

15
play.py Normal file
View File

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