mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-06 18:21:28 +01:00
14 lines
No EOL
390 B
Java
14 lines
No EOL
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;
|
|
}
|
|
} |