From 243681b11cbf2db9e4c4cf0b239759f2204dac5a Mon Sep 17 00:00:00 2001 From: cerberus Date: Sun, 26 Oct 2025 22:03:39 +0100 Subject: [PATCH] added ToDo --- src/pyjack/game.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pyjack/game.py b/src/pyjack/game.py index 5b52e3d..0bc1450 100644 --- a/src/pyjack/game.py +++ b/src/pyjack/game.py @@ -1,5 +1,3 @@ -from pyjack import hand, player -from pyjack import dealer from pyjack.dealer import Dealer from pyjack.deck import Deck from pyjack.player import Player @@ -9,6 +7,9 @@ class Game: """The Game class is the central coordinator, managing the flow of the entire round, from setup to payout.""" + # TODO: - play_round() function + # - show_cards function + def __init__(self) -> None: """Creates instances of 'Deck', 'Player', and 'Dealer'.""" self.deck = Deck()