ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/util/compat/CompatFastBench.java
Michael be421af8e2
Big Refactor of the package layout
Ignore this commit for diffs
2020-09-09 15:48:43 +01:00

27 lines
954 B
Java

package de.ellpeck.actuallyadditions.common.util.compat;
import net.minecraft.client.gui.Gui;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import shadows.fastbench.gui.ContainerFastBench;
import shadows.fastbench.gui.GuiFastBench;
public class CompatFastBench {
public static Container getFastBenchContainer(EntityPlayer p, World world) {
return new ContainerFastBench(p, world, BlockPos.ORIGIN) {
@Override
public boolean canInteractWith(EntityPlayer playerIn) {
return true;
}
};
}
@SideOnly(Side.CLIENT)
public static Gui getFastBenchGui(EntityPlayer p, World world) {
return new GuiFastBench(p.inventory, world, BlockPos.ORIGIN);
}