prepare gui env
This commit is contained in:
parent
02e7221149
commit
d2bcf3bdd8
25 changed files with 291 additions and 198 deletions
15
src/wargame_campaign/controller/controller.py
Normal file
15
src/wargame_campaign/controller/controller.py
Normal 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")
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue