rj-action-library/Tools/gltf-export/gltf-file/GLTFFile.cs

19 lines
304 B
C#

using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
using System.Threading.Tasks;
namespace Rokojori.Tools
{
public class GLTFFile
{
public GLTFAssetInfo asset;
public List<GLTFBufferReference> buffers;
public List<GLTFImageReference> images;
}
}