| 622 | } |
| 623 | |
| 624 | void DrawCircle(int centerX, int centerY, int radius, ::Color color = {255, 255, 255, 255}) { |
| 625 | ::ImageDrawCircle(this, centerX, centerY, radius, color); |
| 626 | } |
| 627 | |
| 628 | void DrawCircle(::Vector2 center, int radius, ::Color color = {255, 255, 255, 255}) { |
| 629 | ::ImageDrawCircleV(this, center, radius, color); |
nothing calls this directly
no outgoing calls
no test coverage detected