Files
toads/main.py
T

11 lines
119 B
Python

from modules.Game import Game
def main():
game = Game()
game.start()
if __name__ == '__main__':
main()