/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/tileentity/machine/storage/TileEntityCrateSteel.java
33 строки
955 B
Boblet
*pipe falling sound effect*
17 сен 2024, 16:47
17 сен 2024, 16:47
3a81e79
Код
Авторство
О чём код?
package com.hbm.tileentity.machine.storage; import com.hbm.inventory.container.ContainerCrateSteel; import com.hbm.inventory.gui.GUICrateSteel; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.Container; import net.minecraft.world.World; public class TileEntityCrateSteel extends TileEntityCrateBase { public TileEntityCrateSteel() { super(54); } @Override public String getInventoryName() { return this.hasCustomInventoryName() ? this.customName : "container.crateSteel"; } @Override public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z) { return new ContainerCrateSteel(player.inventory, this); } @Override @SideOnly(Side.CLIENT) public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUICrateSteel(player.inventory, this); } }