My entry for the VimJam2
https://justayte.itch.io/pinmik-panik
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
262 B
15 lines
262 B
11 months ago
|
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()
|
||
|
|