Text created with TTF_CreateText()
Defined in <SDL3_ttf/SDL_ttf.h>
typedef struct TTF_Text
{char *text; /**< A copy of the UTF-8 string that this text object represents, useful for layout, debugging and retrieving substring text. This is updated when the text object is modified and will be freed automatically when the object is destroyed. */
int num_lines; /**< The number of lines in the text, 0 if it's empty */
int refcount; /**< Application reference count, used when freeing surface */
/**< Private */
TTF_TextData *internal;
} TTF_Text;
This struct is available since SDL_ttf 3.0.0.