16 lines
367 B
C#
16 lines
367 B
C#
// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using UnityEngine;
|
|
|
|
namespace GLTFast.Export
|
|
{
|
|
static class Constants
|
|
{
|
|
public const string version = "6.14.0";
|
|
|
|
internal const string mimeTypePNG = "image/png";
|
|
internal const string mimeTypeJPG = "image/jpeg";
|
|
}
|
|
}
|