11 lines
265 B
Python
11 lines
265 B
Python
|
from ui_elements.ClickEvent import ClickEvent
|
||
|
from ui_elements.KeyEvent import KeyEvent
|
||
|
|
||
|
|
||
|
class ElementController:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def handle_input(self, dt: float, key_events: list[KeyEvent], click_events: list[ClickEvent]):
|
||
|
pass
|