7 lines
177 B
Python
Executable File
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() |