示例#1
0
 public int LineSkip()
 {
     return(SDL_ttf.TTF_FontLineSkip(myPtr));
 }
示例#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);
 }
示例#3
0
文件: Font.cs 项目: xxami/Pulsus
 public int GetLineSkip()
 {
     return(SDL_ttf.TTF_FontLineSkip(handle));
 }