You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import os,sys
|
|
|
|
if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'): # Change le dossier d'execution si le jeu est packagé
|
|
os.chdir(sys._MEIPASS)
|
|
|
|
from gamedata.game import *
|
|
|
|
game = Game()
|
|
|
|
while game.running:
|
|
game.game_loop()
|
|
|
|
pygame.quit()
|
|
|