PathSegment.cs 338 B

12345678910
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. namespace Avalonia.Media
  4. {
  5. public abstract class PathSegment : AvaloniaObject
  6. {
  7. protected internal abstract void ApplyTo(StreamGeometryContext ctx);
  8. }
  9. }