func (t *Timer) IsTimerStarted() bool { var b bool b = bool(C.al_get_timer_started((*C.ALLEGRO_TIMER)(t))) return b }
// Returns true if the timer was started, false if not func (self *Timer) IsStarted() bool { return bool(C.al_get_timer_started(self.handle)) }
func (t *Timer) GetStarted() bool { return bool(C.al_get_timer_started((*C.ALLEGRO_TIMER)(unsafe.Pointer(t)))) }