// SPDX-FileCopyrightText: 2025 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using Unity.Collections;
namespace GLTFast.Loading
{
///
/// Provides access to downloaded data without creating an implicit copy in memory.
///
///
/// This interface is temporary and will get merged into
/// upon the next API breaking major release!
///
// TODO: Merge into IDownload upon next major API breaking release.
public interface INativeDownload
{
///
/// Resulting data as NativeArray (does not allocate memory).
///
NativeArray.ReadOnly NativeData { get; }
}
}