Change Interface for BE

This commit is contained in:
Frank 2021-12-15 11:34:29 +01:00
parent 5ca6a92dd0
commit 77801986b5

View file

@ -1,9 +1,13 @@
package ru.bclib.interfaces;
import net.minecraft.world.level.block.state.BlockState;
import ru.bclib.api.surface.SurfaceRuleBuilder;
public interface SurfaceMaterialProvider {
BlockState getTopMaterial();
BlockState getUnderMaterial();
BlockState getAltTopMaterial();
boolean generateFloorRule();
SurfaceRuleBuilder surface();
}