14 lines
419 B
C#
14 lines
419 B
C#
|
// -----------------------------------------------------------------------
|
|||
|
// <copyright file="IFileFormat.cs" company="">
|
|||
|
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
|
|||
|
// </copyright>
|
|||
|
// -----------------------------------------------------------------------
|
|||
|
|
|||
|
namespace TriangleNet.IO
|
|||
|
{
|
|||
|
public interface IFileFormat
|
|||
|
{
|
|||
|
bool IsSupported(string file);
|
|||
|
}
|
|||
|
}
|