9 lines
155 B
Python
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()
|