Package mffs.block

Source Code of mffs.block.BlockInterdictionMatrix

package mffs.block;

import mffs.tile.TileInterdictionMatrix;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class BlockInterdictionMatrix extends BlockMachineBlock
{
  public BlockInterdictionMatrix(int i)
  {
    super(i, "interdictionMatrix");
  }

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

Related Classes of mffs.block.BlockInterdictionMatrix

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.