| 182 | void DrawRectangleLines(::Rectangle rec, float lineThick) const { ::DrawRectangleLinesEx(rec, lineThick, *this); } |
| 183 | |
| 184 | bool IsEqual(::Color color) { |
| 185 | return ::ColorIsEqual(*this, color); |
| 186 | } |
| 187 | |
| 188 | bool operator==(const ::Color& other) const { return ::ColorIsEqual(*this, other); } |
| 189 | bool operator!=(const ::Color& other) const { return !::ColorIsEqual(*this, other); } |
nothing calls this directly
no outgoing calls
no test coverage detected