From 9a13903a2f7d3a65fdf15a65fb59cccd622e2066 Mon Sep 17 00:00:00 2001 From: Livio Recchia Date: Mon, 10 Feb 2020 23:06:34 +0100 Subject: Initial commit --- main.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 main.py (limited to 'main.py') diff --git a/main.py b/main.py new file mode 100644 index 0000000..c4a00ea --- /dev/null +++ b/main.py @@ -0,0 +1,23 @@ +#!/usr/bin/python2 + +try: + import construct + import plyer + # import pytmx + del construct + del plyer + # del pytmx +except ImportError: + import os + import sys + sys.path.append(os.path.join(os.getcwd(), "external")) + +from gui.managui import ManaGuiApp + + +def main(): + ManaGuiApp().run() + + +if __name__ == "__main__": + main() -- cgit v1.2.3-70-g09d2