mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-07 02:31:29 +01:00
14 lines
390 B
Java
14 lines
390 B
Java
|
package com.minelittlepony.unicopia.block;
|
||
|
|
||
|
import net.minecraft.block.state.IBlockState;
|
||
|
import net.minecraft.world.World;
|
||
|
import net.minecraft.world.gen.feature.WorldGenAbstractTree;
|
||
|
|
||
|
@FunctionalInterface
|
||
|
public interface ITreeGen {
|
||
|
WorldGenAbstractTree getTreeGen(World world, IBlockState state, boolean massive);
|
||
|
|
||
|
default boolean canGrowMassive() {
|
||
|
return false;
|
||
|
}
|
||
|
}
|