* Draw text using font and additional parameters. */
| 173 | * Draw text using font and additional parameters. |
| 174 | */ |
| 175 | void DrawText(const char* text, ::Vector2 position, float fontSize, float spacing, ::Color tint = WHITE) const { |
| 176 | ::DrawTextEx(*this, text, position, fontSize, spacing, tint); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Draw text using font and additional parameters. |