1
0
Fork 0
forked from aly/qstbak
qstbak/LLib/LLib.ImGui/IEditablePolygonSet.cs
2026-08-17 20:27:25 +10:00

17 lines
313 B
C#

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