RyanHub – file viewer
filename: common/src/main/java/rearth/oritech/block/blocks/processing/CentrifugeBlock.java
branch: 1.21
back to repo
package rearth.oritech.block.blocks.processing;

import net.minecraft.block.BlockEntityProvider;
import net.minecraft.block.entity.BlockEntity;
import org.jetbrains.annotations.NotNull;
import rearth.oritech.block.base.block.MultiblockMachine;
import rearth.oritech.block.entity.processing.CentrifugeBlockEntity;

public class CentrifugeBlock extends MultiblockMachine implements BlockEntityProvider {
    
    public CentrifugeBlock(Settings settings) {
        super(settings);
    }
    
    @Override
    public @NotNull Class<? extends BlockEntity> getBlockEntityType() {
        return CentrifugeBlockEntity.class;
    }
}