예제 #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];
 }