Example #1
0
func (t *Timer) IsTimerStarted() bool {
	var b bool

	b = bool(C.al_get_timer_started((*C.ALLEGRO_TIMER)(t)))

	return b
}
Example #2
0
File: al.go Project: beoran/algo
// Returns true if the timer was started, false if not
func (self *Timer) IsStarted() bool {
	return bool(C.al_get_timer_started(self.handle))
}
Example #3
0
func (t *Timer) GetStarted() bool {
	return bool(C.al_get_timer_started((*C.ALLEGRO_TIMER)(unsafe.Pointer(t))))
}