示例#1
0
func (t *Timer) Stop() {
	C.al_stop_timer((*C.ALLEGRO_TIMER)(unsafe.Pointer(t)))
}
示例#2
0
文件: al.go 项目: beoran/algo
// Stops the timer.
func (self *Timer) Stop() {
	C.al_stop_timer(self.handle)
}
示例#3
0
func (t *Timer) Stop() {

	C.al_stop_timer((*C.ALLEGRO_TIMER)(t))

}