-
Notifications
You must be signed in to change notification settings - Fork 0
lobs.timer
Sheepolution edited this page Jan 25, 2024
·
1 revision
function timer.addTimer(callback: function, ms: number)Add a timer.
@param callback — The function to call on each interval.
@param ms — The interval in milliseconds.
function timer.removeTimer(callback: function)Remove a timer.
@param callback — The function that was used in the timer.