//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Drawing.Brushes
{
using ImageSharp.PixelFormats;
///
/// Provides an implementation of a solid brush for painting with repeating images. The brush uses for painting.
///
public class ImageBrush : ImageBrush
{
///
/// Initializes a new instance of the class.
///
/// The image to paint.
public ImageBrush(IImageBase image)
: base(image)
{
}
}
}