aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/mixins/GuiChestAccessor.java
blob: a300f9eb3dacadd74069c692ffbeeac0183cf466 (plain)
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();
}