summaryrefslogtreecommitdiff
path: root/src/main.py
blob: 927c9700769b17902935c9fa4c165f3bea69074f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from common import *
from ui import KPMainWindow

class KP:
	@staticmethod
	def newMap():
		KP.map = KPMap()
	
	@staticmethod
	def run():
		KP.app = QtGui.QApplication(sys.argv)

		KP.newMap()

		KP.mainWindow = KPMainWindow()
		KP.mainWindow.show()

		KP.app.exec_()