ArkaliaCore.Game.Game.Engines.PathEngine.GetCellChars C# (CSharp) 메소드

GetCellChars() 공개 정적인 메소드

get char by cellid
public static GetCellChars ( int CellNum ) : string
CellNum int
리턴 string
        public static string GetCellChars(int CellNum)
        {
            int CharCode2 = (CellNum % Hash.Length);
            int CharCode1 = (CellNum - CharCode2) / Hash.Length;
            return Hash[CharCode1].ToString() + Hash[CharCode2].ToString();
        }