public int LineSkip() { return(SDL_ttf.TTF_FontLineSkip(myPtr)); }
public FontSize(FontFile font, int size) { this.size = size; _handle = SDL_ttf.TTF_OpenFont(font.fileName, size); lineSize = SDL_ttf.TTF_FontLineSkip(_handle); }
public int GetLineSkip() { return(SDL_ttf.TTF_FontLineSkip(handle)); }