Skip to content

Instantly share code, notes, and snippets.

@blindman2k
blindman2k / timer.class.nut
Created November 22, 2016 11:34
Squirrel timer class with all the bells and whistles
// =============================================================================
class Timer {
self = null;
cancelled = false;
paused = false;
running = false;
callback = null;
interval = 0;
params = null;