- Change background images as I am not sure the other really are CC0 - Change music to remixes from ocremix.org - Split code into several files - Change setting dialog layout - Add splashscreen - Minor fixes
		
			
				
	
	
		
			19 lines
		
	
	
		
			359 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			359 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
 | 
						|
import sys
 | 
						|
from qt5 import QtWidgets
 | 
						|
from game_gui import Window
 | 
						|
 | 
						|
    
 | 
						|
    
 | 
						|
def play():
 | 
						|
    app = QtWidgets.QApplication.instance() or QtWidgets.QApplication(sys.argv)
 | 
						|
    win = Window()
 | 
						|
    win.show()
 | 
						|
    win.frames.new_game()
 | 
						|
    sys.exit(app.exec_())
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    play() |