personthecat.catlib.mixin.DirectHolderSetAccessor 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.jetbrains.annotations.Nullable;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Mutable;
import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.List;
import java.util.Set;
import net.minecraft.class_6880;
import net.minecraft.class_6885;
@Mixin(class_6885.class_6886.class)
public interface DirectHolderSetAccessor {
@Accessor
List> getContents();
@Mutable
@Accessor
void setContents(final List> holders);
@Accessor
void setContentsSet(final @Nullable Set> holders);
}