(x: number, y: number, width: number, height: number, color: Color)
| 16 | } |
| 17 | |
| 18 | export function drawRect(x: number, y: number, width: number, height: number, color: Color): void { |
| 19 | bloom_draw_rect(x, y, width, height, color.r, color.g, color.b, color.a); |
| 20 | } |
| 21 | |
| 22 | export function drawRectRec(rec: Rect, color: Color): void { |
| 23 | bloom_draw_rect(rec.x, rec.y, rec.width, rec.height, color.r, color.g, color.b, color.a); |