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