12 lines
162 B
Python
12 lines
162 B
Python
from src.game import Game
|
|
|
|
|
|
def main():
|
|
print("Welcome to Rally Racer !")
|
|
game: Game = Game()
|
|
game.mainloop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|