prepare gui env

This commit is contained in:
Maxime Réaux 2026-01-15 12:43:40 +01:00
parent 02e7221149
commit d2bcf3bdd8
25 changed files with 291 additions and 198 deletions

View file

@ -0,0 +1,15 @@
class Controller:
def __init__(self, model, view):
self.model = model
self.view = view
self.__connect()
def __connect(self):
# self.view.players_view.btn_add.clicked.connect(self.add_player)
pass
def add_player(self):
print(f"test")