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

GridCellTypeChangedEventArgs() публичный Метод

public GridCellTypeChangedEventArgs ( GridCellType oldType, GridCellType newType ) : System
oldType GridCellType
newType GridCellType
Результат System
        public GridCellTypeChangedEventArgs(GridCellType oldType, GridCellType newType)
        {
            OldType = oldType;
            NewType = newType;
        }
GridCellTypeChangedEventArgs