mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
27 lines
619 B
Java
27 lines
619 B
Java
package com.hbm.tileentity.machine;
|
|
|
|
import com.hbm.tileentity.TileEntityInventoryBase;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
public class TileEntitySoyuzCapsule extends TileEntityInventoryBase {
|
|
|
|
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);
|
|
}
|
|
|
|
}
|