mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
14 lines
436 B
C#
14 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);
|
|
}
|
|
}
|