fCraft.Drawing.Fill3DDrawOperation.CanPlace C# (CSharp) Method

CanPlace() private method

private CanPlace ( Vector3I coords ) : bool
coords Vector3I
return bool
        bool CanPlace( Vector3I coords ) {
            if( nonStandardBrush && allCoords.Get( coords ) ) {
                return false;
            }
            return (Map.GetBlock( coords ) == SourceBlock) &&
                   (Player.CanPlace( Map, coords, Brush.NextBlock( this ), Context ) == CanPlaceResult.Allowed);
        }