Ejemplo n.º 1
0
import colorama
from classes.Game import Game

colorama.init(autoreset=True)

# Hide the cursor
print("\x1b[?25l")

game = Game()

option_picked = game.start_game()

if option_picked == -1:
    game.quit_game()
else:
    # If the game has to be started
    game.play_game()
Ejemplo n.º 2
0
from classes.Game import Game

game = Game()
game.start_game()