コード例 #1
0
ファイル: Font.cs プロジェクト: Rahil627/Rise
 public void GetCharInfo(char chr, out FontChar info)
 {
     info = chars[Font.GetIndex(chr)];
 }
コード例 #2
0
ファイル: Font.cs プロジェクト: Rahil627/Rise
 public void GetCharInfoAt(int i, out FontChar info)
 {
     info = chars[i];
 }