Hbm-s-Nuclear-Tech-GIT/com/hbm/tileentity/machine/TileEntitySoyuzCapsule.java

17 lines
291 B
Java

package com.hbm.tileentity.machine;
import com.hbm.tileentity.TileEntityInventoryBase;
public class TileEntitySoyuzCapsule extends TileEntityInventoryBase {
public TileEntitySoyuzCapsule() {
super(19);
}
@Override
public String getName() {
return "container.soyuzCapsule";
}
}