using System; using SkiaSharp; namespace Artemis.Core.SkiaSharp; /// /// Represents a managed wrapper around a SkiaSharp context /// public interface IManagedGraphicsContext : IDisposable { /// /// Gets the graphics context created by this wrapper /// GRContext GraphicsContext { get; } }