Sokoban/main.py
2021-03-23 15:38:37 +01:00

9 lines
155 B
Python

import logic.game
import map.mapper
import solver.astar
if __name__ == "__main__":
"""Start the game"""
game = logic.game.Game()
game.start()