Editor/HumanoidRetargeter/Embedded/ZstdSharp/Unsafe/ZSTD_dictLoadMethod_e.cs
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
namespace HumanoidRetargeterZstd.Unsafe
{
    public enum ZSTD_dictLoadMethod_e
    {
        /**< Copy dictionary content internally */
        ZSTD_dlm_byCopy = 0,
        /**< Reference dictionary content -- the dictionary buffer must outlive its users. */
        ZSTD_dlm_byRef = 1
    }
}