20 lines
348 B
C#
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();
|
|
}
|
|
}
|