예제 #1
0
func IsBitmapDrawingHeld() bool {
	var b bool

	b = bool(C.al_is_bitmap_drawing_held())

	return b
}
예제 #2
0
파일: display.go 프로젝트: beoran/algo
// Returns whether or not the bitmap drawing was held
func IsBitmapDrawingHeld() bool {
	return cb2b(C.al_is_bitmap_drawing_held())
}