Surface rules API
This commit is contained in:
parent
92dae621f1
commit
c7ce0b5547
6 changed files with 94 additions and 62 deletions
21
src/main/java/ru/bclib/api/biomes/SurfaceRuleBuilder.java
Normal file
21
src/main/java/ru/bclib/api/biomes/SurfaceRuleBuilder.java
Normal file
|
@ -0,0 +1,21 @@
|
|||
package ru.bclib.api.biomes;
|
||||
|
||||
import net.minecraft.world.level.levelgen.SurfaceRules;
|
||||
import net.minecraft.world.level.levelgen.SurfaceRules.ConditionSource;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class SurfaceRuleBuilder {
|
||||
private static final SurfaceRuleBuilder INSTANCE = new SurfaceRuleBuilder();
|
||||
private List<ConditionSource> conditions;
|
||||
|
||||
private SurfaceRuleBuilder() {}
|
||||
|
||||
public static SurfaceRuleBuilder start() {
|
||||
return INSTANCE;
|
||||
}
|
||||
|
||||
public static SurfaceRules.RuleSource build() {
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue