roguepy/main.py

9 lines
107 B
Python

from game import Game
def main():
game = Game()
game.run()
if __name__ == "__main__":
main()