8 lines
159 B
Python
8 lines
159 B
Python
class RavenUI():
|
|
# no type hint because of circular dependencies
|
|
window = None
|
|
|
|
@staticmethod
|
|
def update_ui():
|
|
RavenUI.window.update()
|