コード例 #1
0
ファイル: timer.go プロジェクト: bluepeppers/allegro
func (t *Timer) IsTimerStarted() bool {
	var b bool

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

	return b
}
コード例 #2
0
ファイル: al.go プロジェクト: 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))
}
コード例 #3
0
ファイル: timer.go プロジェクト: b1naryth1ef/allegro
func (t *Timer) GetStarted() bool {
	return bool(C.al_get_timer_started((*C.ALLEGRO_TIMER)(unsafe.Pointer(t))))
}