Client/controller/MainWindowController.py
2022-02-02 01:43:38 +01:00

10 lines
287 B
Python

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