(x: number, y: number, width: number, height: number, thickness: number, color: Color)
| 24 | } |
| 25 | |
| 26 | export function drawRectLines(x: number, y: number, width: number, height: number, thickness: number, color: Color): void { |
| 27 | bloom_draw_rect_lines(x, y, width, height, thickness, color.r, color.g, color.b, color.a); |
| 28 | } |
| 29 | |
| 30 | export function drawCircle(centerX: number, centerY: number, radius: number, color: Color): void { |
| 31 | bloom_draw_circle(centerX, centerY, radius, color.r, color.g, color.b, color.a); |
no test coverage detected