-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
31 lines (25 loc) · 1.27 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# =========================================================================== #
# ____________________ |Importation des lib/packages| ____________________ #
# =========================================================================== #
from cls_game import GameUI
from PyQt5.QtWidgets import QApplication
from PyQt5 import QtGui, QtCore
import sys
import debug
# =========================================================================== #
# | constants definition | #
# =========================================================================== #
# =========================================================================== #
# | fonctions definition | #
# =========================================================================== #
# =========================================================================== #
# _________________________________ | MAIN | ________________________________ #
# =========================================================================== #
if __name__ == "__main__":
#game_mode = {"PvP": 1, "PvIA": 2, "IAvIA": 3}
app = QApplication(sys.argv)
w_game = GameUI()
if debug.DEBUG:
debug.print_gameUI_attr(w_game)
w_game.show()
sys.exit(app.exec())