IGlyphRunImpl.cs 271 B

1234567891011
  1. using System;
  2. using Avalonia.Metadata;
  3. namespace Avalonia.Platform
  4. {
  5. /// <summary>
  6. /// Actual implementation of a glyph run that stores platform dependent resources.
  7. /// </summary>
  8. [Unstable]
  9. public interface IGlyphRunImpl : IDisposable { }
  10. }