ChessDotNet.DetailedMove.DetailedMove C# (CSharp) Method

DetailedMove() public method

public DetailedMove ( Move move, Piece piece, bool isCapture, CastlingType castling )
move Move
piece Piece
isCapture bool
castling CastlingType
        public DetailedMove(Move move, Piece piece, bool isCapture, CastlingType castling)
            : this(move.OriginalPosition, move.NewPosition, move.Player, move.Promotion, piece, isCapture, castling)
        {
        }

Same methods

DetailedMove::DetailedMove ( Position originalPosition, Position newPosition, Player player, char promotion, Piece piece, bool isCapture, CastlingType castling )