18 lines
466 B
C#
18 lines
466 B
C#
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
namespace SixLabors.ImageSharp.Drawing.Processing.Backends {
|
|
/// <summary>
|
|
/// Base type for backend-specific native drawing targets.
|
|
/// </summary>
|
|
public abstract class NativeSurface
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="NativeSurface"/> class.
|
|
/// </summary>
|
|
protected NativeSurface()
|
|
{
|
|
}
|
|
}
|
|
}
|