AStarXNA.Game1.SetCellType C# (CSharp) Метод

SetCellType() приватный Метод

private SetCellType ( GridCell cell, GridCellType type ) : void
cell GridCell
type GridCellType
Результат void
        void SetCellType(GridCell cell, GridCellType type)
        {
            if (cell == null)
            {
                return;
            }
            cell.Type = type;
        }