Files
stas-barecky/Library/PackageCache/com.unity.2d.common@51e9484895c4/Path/Editor/Shapes/IShape.cs
2026-01-08 20:43:08 +05:00

20 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEditor.U2D.Common.Path
{
internal enum ShapeType
{
Polygon,
Spline
}
internal interface IShape
{
ShapeType type { get; }
bool isOpenEnded { get; }
ControlPoint[] ToControlPoints();
}
}