using System.Collections.Generic; using System.Numerics; namespace LLib.ImGui; public interface IEditablePolygonSet { int PolygonCount { get; } IList GetVertices(int polygonIndex); uint GetColor(int polygonIndex); string GetLabel(int polygonIndex); void AddPolygon(IList vertices); }