mirror of
https://github.com/kuitoi/kuitoi-Server.git
synced 2026-06-19 15:11:25 +00:00
7 lines
191 B
Python
7 lines
191 B
Python
class EventsSystem:
|
|
@staticmethod
|
|
def register_event(self, event_name, event_func): ...
|
|
@staticmethod
|
|
def call_event(self, event_name, *data): ...
|
|
class ev(EventsSystem): ...
|