Package mffs.block

Source Code of mffs.block.BlockForceManipulator

package mffs.block;

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

public class BlockForceManipulator extends BlockMFFS
{
  public BlockForceManipulator(int i)
  {
    super(i, "manipulator");
    this.rotationMask = 63;
  }

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

Related Classes of mffs.block.BlockForceManipulator

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.