6 lines
85 B
Python
6 lines
85 B
Python
from game import Game
|
|
|
|
if __name__ == '__main__':
|
|
game = Game()
|
|
game.start()
|