summaryrefslogtreecommitdiff
path: root/src/sliceitoff/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sliceitoff/main.py')
-rw-r--r--src/sliceitoff/main.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/sliceitoff/main.py b/src/sliceitoff/main.py
index 58cc617..9a95b05 100644
--- a/src/sliceitoff/main.py
+++ b/src/sliceitoff/main.py
@@ -1,11 +1,10 @@
""" main.py """
-from runpy import run_path
-from pathlib import Path
+from sliceitoff.game import Game
def main():
- """ Let's start the app as current path being base """
- my_path = Path(__file__).parent.resolve()
- run_path(f"{my_path}", run_name="sliceitoff")
+ """ All the fun begins here """
+ game = Game()
+ game.run()
if __name__ == "__main__":
main()