17 lines
313 B
C#
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);
|
|
}
|