Example #1
0
func (f *Font) GetLineHeight() int {
	var i int

	i = int(C.al_get_font_line_height((*C.ALLEGRO_FONT)(f)))

	return i
}
Example #2
0
func (f *Font) GetLineHeight() int32 {
	return int32(C.al_get_font_line_height((*C.ALLEGRO_FONT)(unsafe.Pointer(f))))
}