| 90 | void DrawLines(::Color color, float lineThick) const { ::DrawRectangleLinesEx(*this, lineThick, color); } |
| 91 | |
| 92 | void DrawRounded(float roundness, int segments, ::Color color) const { |
| 93 | ::DrawRectangleRounded(*this, roundness, segments, color); |
| 94 | } |
| 95 | |
| 96 | void DrawRoundedLines(float roundness, int segments, ::Color color) const { |
| 97 | ::DrawRectangleRoundedLines(*this, roundness, segments, color); |
nothing calls this directly
no outgoing calls
no test coverage detected