wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/Shapes/IShape.cs

20 lines
348 B
C#
Raw Normal View History

2025-01-02 14:49:00 +08:00
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();
}
}