typedef uint64_t ecs_id_t;
typedef struct ecs_bulk_desc_t {
ecs_id_t ids[32];
}
public readonly partial struct ecs_id_t : IEquatable<ecs_id_t> { ... }
public unsafe partial struct ecs_bulk_desc_t
{
public fixed IEquatable<ecs_id_t> ids[32];
}
Not sure what the correct way to resolve this is.