All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.thomasglasser.sherdsapi.impl.mixin.accessor.ItemsToPotsAccessor Maven / Gradle / Ivy

The newest version!
package dev.thomasglasser.sherdsapi.impl.mixin.accessor;

import net.minecraft.resources.ResourceKey;
import net.minecraft.world.item.Item;
import net.minecraft.world.level.block.entity.DecoratedPotPatterns;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;

import java.util.Map;

@Mixin(DecoratedPotPatterns.class)
public interface ItemsToPotsAccessor {
    @Accessor("ITEM_TO_POT_TEXTURE")
    static Map> getItemsToPots() {
        throw new AssertionError("This should not happen!");
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy