//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Drawing.Brushes
{
///
/// Provides an implementation of a solid brush for painting solid color areas. The brush uses for painting.
///
public class SolidBrush : SolidBrush
{
///
/// Initializes a new instance of the class.
///
/// The color.
public SolidBrush(Color color)
: base(color)
{
}
}
}