Timer is an abstract clock object that can execute events at some point in
the future. Critically, a timer only advances when its associated scene
wants it to advance. Thus we can easily pause a timer, and delay execution
of all of its events, by simply failing to call advance(). It is also easy
to destroy a timer and end the repetition of the events it entails, because
we can do so at the granularity of the Timer, not the individual events.
Timer is an abstract clock object that can execute events at some point in the future. Critically, a timer only advances when its associated scene wants it to advance. Thus we can easily pause a timer, and delay execution of all of its events, by simply failing to call advance(). It is also easy to destroy a timer and end the repetition of the events it entails, because we can do so at the granularity of the Timer, not the individual events.