AStarXNA.GridCellTypeChangedEventArgs.GridCellTypeChangedEventArgs C# (CSharp) Méthode

GridCellTypeChangedEventArgs() public méthode

public GridCellTypeChangedEventArgs ( GridCellType oldType, GridCellType newType ) : System
oldType GridCellType
newType GridCellType
Résultat System
        public GridCellTypeChangedEventArgs(GridCellType oldType, GridCellType newType)
        {
            OldType = oldType;
            NewType = newType;
        }
GridCellTypeChangedEventArgs