Skip to content

Commit 07f7b4c

Browse files
committed
Added convertible interface
1 parent 71a0af1 commit 07f7b4c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace SharpGLTF.Schema2
6+
{
7+
/// <summary>
8+
/// Defines a method that converts the implementing reference to a <see cref="ModelRoot"/>
9+
/// </summary>
10+
public interface IConvertibleToGltf2
11+
{
12+
ModelRoot ToGltf2();
13+
}
14+
}

0 commit comments

Comments
 (0)