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/IndustrialLaserProjectorBlo...

20 lines
695 B
Java
Raw Normal View History

2020-07-28 20:46:34 +00:00
package com.thebrokenrail.energonrelics.block.forcefield.laser;
2020-07-28 20:38:21 +00:00
2020-08-27 01:12:47 +00:00
import com.thebrokenrail.energonrelics.block.entity.forcefield.laser.IndustrialLaserProjectorBlockEntity;
2020-07-28 20:38:21 +00:00
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() {
2020-08-27 01:12:47 +00:00
return IndustrialLaserProjectorBlockEntity::new;
2020-07-28 20:38:21 +00:00
}
}