13 lines
163 B
C#
13 lines
163 B
C#
using GLTF.Schema;
|
|
|
|
namespace GLTF
|
|
{
|
|
/// <summary>
|
|
/// Represents a GLTFObject
|
|
/// </summary>
|
|
public interface IGLTFObject
|
|
{
|
|
GLTFRoot Root { get; }
|
|
}
|
|
}
|