package com.thebrokenrail.energonrelics.block.forcefield.laser; import com.thebrokenrail.energonrelics.block.entity.forcefield.laser.IndustrialLaserProjectorBlockEntity; import com.thebrokenrail.energonrelics.block.forcefield.util.FieldProjectorBlock; import net.minecraft.block.entity.BlockEntity; import net.minecraft.block.entity.BlockEntityType; import java.util.function.Function; public class IndustrialLaserProjectorBlock extends FieldProjectorBlock { public IndustrialLaserProjectorBlock() { super(null); } @Override protected Function, BlockEntity> getFactory() { return IndustrialLaserProjectorBlockEntity::new; } }