Esempio n. 1
0
 public int LineSkip()
 {
     return(SDL_ttf.TTF_FontLineSkip(myPtr));
 }
Esempio n. 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);
 }
Esempio n. 3
0
File: Font.cs Progetto: xxami/Pulsus
 public int GetLineSkip()
 {
     return(SDL_ttf.TTF_FontLineSkip(handle));
 }