// SPDX-FileCopyrightText: 2025 Unity Technologies and the glTFast authors // SPDX-License-Identifier: Apache-2.0 using System; using UnityEngine; namespace GLTFast.Loading { /// /// Provides a mechanism to inspect the progress and result of a texture download /// or texture file access request /// public interface ITextureDownload : IDownload { /// /// Resulting texture /// Texture2D Texture { get; } } }