This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/block/forcefield/laser/IndustrialLaserProjectorBlock.java
TheBrokenRail 8e1712e64c
All checks were successful
EnergonRelics/pipeline/head This commit looks good
1.0.0
2020-08-26 21:12:47 -04:00

20 lines
695 B
Java

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<BlockEntityType<BlockEntity>, BlockEntity> getFactory() {
return IndustrialLaserProjectorBlockEntity::new;
}
}