mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
9 lines
281 B
Lua
9 lines
281 B
Lua
local event=require("event")
|
|
|
|
function AddEventListener(EventString,CallbackFunction)
|
|
return event.listen(EventString,CallbackFunction)
|
|
end
|
|
|
|
function RemoveEventListener(ListenerID)
|
|
return event.ignore(event.handlers[ListenerID].key,event.handlers[ListenerID].callback)
|
|
end |