Singularity/Assets/EasyWebp/NativeWrapper/Error.cs
2024-05-06 11:45:45 -07:00

16 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebP
{
public enum Error
{
Success = 0,
InvalidHeader = 20,
DecodingError = 30,
}
}