/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/tileentity/machine/storage/TileEntitySoyuzCapsule.java
43 строки
1 KB
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.ContainerSoyuzCapsule; import com.hbm.inventory.gui.GUISoyuzCapsule; import com.hbm.tileentity.IGUIProvider; import com.hbm.tileentity.TileEntityInventoryBase; 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.util.AxisAlignedBB; import net.minecraft.world.World; public class TileEntitySoyuzCapsule extends TileEntityInventoryBase implements IGUIProvider { public TileEntitySoyuzCapsule() { super(19); } @Override public String getName() { return "container.soyuzCapsule"; } @SideOnly(Side.CLIENT) public AxisAlignedBB getRenderBoundingBox() { return AxisAlignedBB.getBoundingBox(xCoord - 1, yCoord - 1, zCoord - 1, xCoord + 2, yCoord + 3, zCoord + 2); } @Override public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z) { return new ContainerSoyuzCapsule(player.inventory, this); } @Override @SideOnly(Side.CLIENT) public Object provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) { return new GUISoyuzCapsule(player.inventory, this); } }