Sokoban/main.py

9 lines
155 B
Python
Raw Normal View History

2021-03-23 15:38:37 +01:00
import logic.game
import map.mapper
import solver.astar
if __name__ == "__main__":
"""Start the game"""
game = logic.game.Game()
game.start()