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