SadConsole.Game.WorldGeneration.Tile.GetHeightValue C# (CSharp) Метод

GetHeightValue() публичный статический Метод

public static GetHeightValue ( Tile tile ) : float
tile Tile
Результат float
        public static float GetHeightValue(Tile tile)
        {
            if (tile == null)
                return int.MaxValue;
            else
                return tile.HeightValue;
        }