github.com/df-mc/dragonfly@v0.9.13/server/world/biome/end.go (about)

     1  package biome
     2  
     3  // End ...
     4  type End struct{}
     5  
     6  // Temperature ...
     7  func (End) Temperature() float64 {
     8  	return 0.5
     9  }
    10  
    11  // Rainfall ...
    12  func (End) Rainfall() float64 {
    13  	return 0.5
    14  }
    15  
    16  // String ...
    17  func (End) String() string {
    18  	return "the_end"
    19  }
    20  
    21  // EncodeBiome ...
    22  func (End) EncodeBiome() int {
    23  	return 9
    24  }