Interface WorldGenerationConfig
-
- All Known Subinterfaces:
WorldGenerationConfig.Mutable
public interface WorldGenerationConfig
Represents settings that apply to the generation of aworld
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
WorldGenerationConfig.Mutable
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
generateBonusChest()
Gets if the bonus chest will generateboolean
generateFeatures()
Gets if features will generatelong
seed()
Gets the seed
-
-
-
Method Detail
-
seed
long seed()
Gets the seed- Returns:
- The seed
-
generateFeatures
boolean generateFeatures()
Gets if features will generate- Returns:
- Whether features will generate
-
generateBonusChest
boolean generateBonusChest()
Gets if the bonus chest will generate- Returns:
- Whether bonus chest will generate
-
-