| 315 | void DrawPixel(::Color color = {0, 0, 0, 255}) const { ::DrawPixelV(*this, color); } |
| 316 | |
| 317 | void DrawLine(::Vector2 endPos, ::Color color = {0, 0, 0, 255}) const { ::DrawLineV(*this, endPos, color); } |
| 318 | |
| 319 | void DrawLine(::Vector2 endPos, float thick, ::Color color = {0, 0, 0, 255}) const { |
| 320 | ::DrawLineEx(*this, endPos, thick, color); |
nothing calls this directly
no outgoing calls
no test coverage detected