// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System;
namespace GLTFast.Export
{
///
/// Exported image file format
///
public enum ImageFormat
{
///
/// Unknown, no preferred file format
///
Unknown,
///
/// Jpeg file format
///
Jpg,
///
/// PNG (Portable Network Graphics) file format
///
Png
}
}