19 lines
327 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
namespace unity.libwebp.Interop
{
public unsafe partial struct WebPBitstreamFeatures
{
public int width;
public int height;
public int has_alpha;
public int has_animation;
public int format;
[NativeTypeName("uint32_t [5]")]
public fixed uint pad[5];
}
}