forked from aly/qstbak
muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
17
LLib/LLib.ImGui/IEditablePolygonSet.cs
Normal file
17
LLib/LLib.ImGui/IEditablePolygonSet.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue