slacker-game/slacker_game/__main__.py

10 lines
142 B
Python
Raw Normal View History

2020-09-05 11:09:52 +02:00
from slacker_game import Slacker
def main():
2020-09-06 09:24:37 +02:00
with Slacker() as slacker:
slacker.main_loop()
2020-09-05 11:09:52 +02:00
if __name__ == '__main__': main()