BCLib/src/main/java/org/betterx/bclib/interfaces/SettingsExtender.java
2022-06-30 17:51:44 +02:00

8 lines
230 B
Java

package org.betterx.bclib.interfaces;
import net.minecraft.world.level.block.state.BlockBehaviour;
@FunctionalInterface
public interface SettingsExtender {
BlockBehaviour.Properties amend(BlockBehaviour.Properties props);
}