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

18 lines
243 B
C#
Raw Normal View History

2025-07-15 09:30:35 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
using System.Threading.Tasks;
namespace Rokojori.Tools
{
public class GLTFBufferReference
{
public int byteLength;
public string uri;
}
}