(path: string, size: number)
| 25 | } |
| 26 | |
| 27 | export function loadFont(path: string, size: number): Font { |
| 28 | const handle = bloom_load_font(path as any, size); |
| 29 | return { handle, size }; |
| 30 | } |
| 31 | |
| 32 | export function loadFontEx(path: string, size: number): Font { |
| 33 | const handle = bloom_load_font(path as any, size); |
nothing calls this directly
no test coverage detected