10 lines
287 B
Python
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
|