forked from protonphoton/LJ
18 lines
277 B
Python
Executable File
18 lines
277 B
Python
Executable File
# coding=UTF-8
|
|
'''
|
|
Etat global (anciennement singleton de la classe GameState + autres VARIABLES nécessaires partout)"
|
|
'''
|
|
|
|
from globalVars import *
|
|
|
|
# Etat global général
|
|
app_path = ""
|
|
|
|
# anciennement GameState
|
|
fs = GAME_FS_GAMEOVER
|
|
plyr = None
|
|
score = None
|
|
bmprs = None
|
|
|
|
|