added ToDo

This commit is contained in:
2025-10-26 22:03:39 +01:00
parent e8b2c772f3
commit 243681b11c

View File

@@ -1,5 +1,3 @@
from pyjack import hand, player
from pyjack import dealer
from pyjack.dealer import Dealer from pyjack.dealer import Dealer
from pyjack.deck import Deck from pyjack.deck import Deck
from pyjack.player import Player from pyjack.player import Player
@@ -9,6 +7,9 @@ class Game:
"""The Game class is the central coordinator, managing the flow of """The Game class is the central coordinator, managing the flow of
the entire round, from setup to payout.""" the entire round, from setup to payout."""
# TODO: - play_round() function
# - show_cards function
def __init__(self) -> None: def __init__(self) -> None:
"""Creates instances of 'Deck', 'Player', and 'Dealer'.""" """Creates instances of 'Deck', 'Player', and 'Dealer'."""
self.deck = Deck() self.deck = Deck()