9 lines
221 B
Java
9 lines
221 B
Java
package fr.adrien1106.reframed.generator;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.data.client.BlockStateSupplier;
|
|
|
|
public interface BlockStateProvider {
|
|
BlockStateSupplier getMultipart(Block block);
|
|
}
|