1 2 3 4 5 6 7 8 9 10 11 12 13
package com.thatgravyboat.skyblockhud.mixins; import net.minecraft.client.gui.inventory.GuiChest; import net.minecraft.inventory.IInventory; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.gen.Accessor; @Mixin(GuiChest.class) public interface GuiChestAccessor { @Accessor IInventory getLowerChestInventory(); }