// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts.Tables.AdvancedTypographic { /// /// An AttachPoint table contains an array of contour point indices for the attachment points on a single glyph. /// /// internal struct AttachPoint { /// /// The array of contour point indices for this glyph's attachment points. /// public ushort[] PointIndices; } }