blackjack-theory-game/main.py
2026-06-09 20:07:08 +02:00

7 lines
177 B
Python
Executable File

from blackjack_game import BlackjackGame
from gui.gui import BlackjackGUI
if __name__ == "__main__":
game = BlackjackGame()
gui = BlackjackGUI(game)
gui.run()