PO/Library/PackageCache/com.unity.2d.animation@5.0.7/Runtime/Triangle/IO/IFileFormat.cs

15 lines
436 B
C#

// -----------------------------------------------------------------------
// <copyright file="IFileFormat.cs" company="">
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
// </copyright>
// -----------------------------------------------------------------------
namespace UnityEngine.U2D.Animation.TriangleNet
.IO
{
internal interface IFileFormat
{
bool IsSupported(string file);
}
}