예제 #1
0
파일: al.go 프로젝트: beoran/algo
// Returns true if the event queue self is empty, false if not.
func (self *EventQueue) IsEmpty() bool {
	return bool(C.al_is_event_queue_empty(self.handle))
}
예제 #2
0
func (e *EventQueue) IsEmpty() bool {
	return bool(C.al_is_event_queue_empty((*C.ALLEGRO_EVENT_QUEUE)(unsafe.Pointer(e))))
}