blob: 0a1fb75652b720df6a22e6aa38985ef35870fc02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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();
}
|