| 657 | } |
| 658 | |
| 659 | void DrawText(const char* text, ::Vector2 position, int fontSize, ::Color color = {255, 255, 255, 255}) { |
| 660 | ::ImageDrawText(this, text, static_cast<int>(position.x), static_cast<int>(position.y), fontSize, color); |
| 661 | } |
| 662 | |
| 663 | void DrawText(const std::string& text, ::Vector2 position, int fontSize, ::Color color = {255, 255, 255, 255}) { |
| 664 | ::ImageDrawText( |
no test coverage detected