Add remove_delay_timer()

This commit is contained in:
GreenComfyTea
2023-08-19 16:15:48 +03:00
parent 4f5350b631
commit bcb6355b61

View File

@@ -88,6 +88,12 @@ function this.new_delay_timer(callback, delay)
this.delay_timer_list[callback] = delay_timer;
return delay_timer;
end
function this.remove_delay_timer(delay_timer)
this.delay_timer_list[delay_timer.callback] = nil;
end
function this.init_global_timers()