27 lines
470 B
Python
27 lines
470 B
Python
|
from controller.Frames import Frames
|
||
|
|
||
|
|
||
|
class MainController:
|
||
|
"""
|
||
|
Controller - MainController
|
||
|
|
||
|
desc...
|
||
|
"""
|
||
|
# Variables
|
||
|
view = None
|
||
|
|
||
|
# Constructor
|
||
|
def __init__(self) -> None:
|
||
|
pass
|
||
|
|
||
|
def change_frame(self, frame: Frames.value) -> None:
|
||
|
"""
|
||
|
[function for controller]
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def set_view(self, view) -> None:
|
||
|
"""
|
||
|
[function for view]
|
||
|
"""
|
||
|
self.view = view
|