Package mffs.block

Source Code of mffs.block.BlockFortronCapacitor

package mffs.block;

import mffs.base.BlockMFFS;
import mffs.tile.TileFortronCapacitor;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class BlockFortronCapacitor extends BlockMFFS
{
  public BlockFortronCapacitor(int i)
  {
    super(i, "fortronCapacitor");
  }

  @Override
  public TileEntity createNewTileEntity(World world)
  {
    return new TileFortronCapacitor();
  }
}
TOP

Related Classes of mffs.block.BlockFortronCapacitor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.