summaryrefslogtreecommitdiff
path: root/src/sliceitoff/__main__.py
blob: 971e58cfa32650bb665391d31a60ebfbc98ba80e (plain)
1
2
3
4
5
6
7
8
""" Slice It Off! - Game where you slice the area where enemies reside to
    the minimum
"""

from game import Game

game = Game()
game.run()