| 79 | } |
| 80 | |
| 81 | void DrawLines(::Color color) const { |
| 82 | ::DrawRectangleLines( |
| 83 | static_cast<int>(x), |
| 84 | static_cast<int>(y), |
| 85 | static_cast<int>(width), |
| 86 | static_cast<int>(height), |
| 87 | color); |
| 88 | } |
| 89 | |
| 90 | void DrawLines(::Color color, float lineThick) const { ::DrawRectangleLinesEx(*this, lineThick, color); } |
| 91 |
nothing calls this directly
no test coverage detected