// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.ImageSharp.Drawing.Processing.Backends { /// /// Base type for backend-specific native drawing targets. /// public abstract class NativeSurface { /// /// Initializes a new instance of the class. /// protected NativeSurface() { } } }