blob: 5cedfaa0ecfea4b93f5076e90fc3f52cdefe38db (
plain)
1
2
3
4
5
6
7
8
9
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__()
|