diff options
Diffstat (limited to 'pygame/gamechestgui')
-rwxr-xr-x | pygame/gamechestgui | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pygame/gamechestgui b/pygame/gamechestgui new file mode 100755 index 0000000..5cedfaa --- /dev/null +++ b/pygame/gamechestgui @@ -0,0 +1,10 @@ +#!/usr/bin/python3 + +import sys +import os +file_path = os.path.realpath(__file__) +sys.path.insert(0, os.path.join(os.path.dirname(file_path), 'libs')) +sys.path.insert(0, os.path.join(os.path.dirname(file_path), 'libs/gamechestgui')) + +import gamechestgui +#gamechestgui.__main__() |