Files
AR-Menu/Library/PackageCache/com.unity.cloud.gltfast@db5a82ec0b47/Runtime/Scripts/GlbBinChunk.cs
2025-11-30 08:35:03 +02:00

21 lines
400 B
C#

// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using UnityEngine;
namespace GLTFast
{
readonly struct GlbBinChunk
{
public int Start { get; }
public uint Length { get; }
public GlbBinChunk(int start, uint length)
{
Start = start;
Length = length;
}
}
}