ImageSharp/ImageSharp.Drawing/Processing/Backends/NativeSurface.cs
2026-08-03 22:31:27 +02:00

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()
{
}
}
}