using GLTF.Schema;
namespace GLTF
{
///
/// Represents a glTF file (specifically not GLB)
///
public class GLTFObject : IGLTFObject
{
public GLTFObject(GLTFRoot root)
{
Root = root;
}
///
/// Parsed glTF into a strongly typed C# object
///
public GLTFRoot Root { get; internal set; }
}
}