personthecat.catlib.mixin.NamedHolderSetAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of catlib-quilt Show documentation
Show all versions of catlib-quilt Show documentation
Utilities for serialization, commands, noise generation, IO, and some new data types.
The newest version!
package personthecat.catlib.mixin;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;
import org.spongepowered.asm.mixin.gen.Invoker;
import java.util.List;
import net.minecraft.class_6880;
import net.minecraft.class_6885;
@Mixin(class_6885.class_6888.class)
public interface NamedHolderSetAccessor {
@Accessor
List> getContents();
@Invoker
void invokeBind(final List> holders);
}