| 607 | } |
| 608 | |
| 609 | void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, ::Color color = {255, 255, 255, 255}) { |
| 610 | ::ImageDrawLine(this, startPosX, startPosY, endPosX, endPosY, color); |
| 611 | } |
| 612 | |
| 613 | void DrawLine(::Vector2 start, ::Vector2 end, ::Color color = {255, 255, 255, 255}) { |
| 614 | ::ImageDrawLineV(this, start, end, color); |
nothing calls this directly
no outgoing calls
no test coverage detected