summaryrefslogtreecommitdiff
path: root/koopatlas.py
blob: b08f8b54ae643b1ddb550426f08047b861950e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python2

# Koopatlas
# A project by Treeki and Tempus
# Started 2nd November 2011

import os.path, sys

if hasattr(sys, 'frozen'):
	sys.path.append(os.path.join(os.path.dirname(sys.executable), 'src'))
else:
	sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))



from common import *

if __name__ == '__main__':
	KP.run()