8 lines
122 B
Python
8 lines
122 B
Python
class HandlerEvent:
|
|
handler_link = []
|
|
|
|
def __init__(self, func):
|
|
HandlerEvent.handler_link.append(func)
|
|
|
|
|