| 1347 | } |
| 1348 | |
| 1349 | void Text(float x, float y, float FontSize, const char *pText, float LineWidth = -1.0f) override |
| 1350 | { |
| 1351 | CTextCursor Cursor; |
| 1352 | Cursor.SetPosition(vec2(x, y)); |
| 1353 | Cursor.m_FontSize = FontSize; |
| 1354 | Cursor.m_LineWidth = LineWidth; |
| 1355 | TextEx(&Cursor, pText, -1); |
| 1356 | } |
| 1357 | |
| 1358 | float TextWidth(float FontSize, const char *pText, int StrLength = -1, float LineWidth = -1.0f, int Flags = 0, const STextSizeProperties &TextSizeProps = {}) override |
| 1359 | { |