Client/controller/MainWindowController.py

10 lines
287 B
Python
Raw Normal View History

2022-02-02 01:43:38 +01:00
from controller.IMainWindowController import *
class MainWindowController(IEventHandler):
def __init__(self, parser, app_controller):
self.parser = parser
self.app_controller = app_controller
def on_quit(self):
self.app_controller.on_quit()
pass