ArkaliaCore.Game.Game.Engines.PathEngine.GetCellChars C# (CSharp) Method

GetCellChars() public static method

get char by cellid
public static GetCellChars ( int CellNum ) : string
CellNum int
return 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();
        }