IFileFormat.cs 436 B

1234567891011121314
  1. // -----------------------------------------------------------------------
  2. // <copyright file="IFileFormat.cs" company="">
  3. // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
  4. // </copyright>
  5. // -----------------------------------------------------------------------
  6. namespace UnityEngine.U2D.Animation.TriangleNet
  7. .IO
  8. {
  9. internal interface IFileFormat
  10. {
  11. bool IsSupported(string file);
  12. }
  13. }