Skip to content

Commit

Permalink
Fixed Versions in CustomBiome
Browse files Browse the repository at this point in the history
  • Loading branch information
Outspending committed Jan 2, 2024
1 parent b226d7a commit 753a5cc
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions src/main/java/me/outspending/biomesapi/biome/CustomBiome.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
import org.bukkit.NamespacedKey;
import org.jetbrains.annotations.NotNull;

@AsOf("0.0.2")
@AsOf("0.0.1")
public interface CustomBiome {

/**
* Returns a new instance of the Builder class.
*
* @return a new Builder instance
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
static @NotNull Builder builder() {
return new Builder();
}
Expand All @@ -27,99 +27,99 @@ public interface CustomBiome {
* Returns the NamespacedKey of the CustomBiome.
*
* @return the NamespacedKey of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
@NotNull NamespacedKey toNamespacedKey();

/**
* Returns the BiomeResourceKey of the CustomBiome.
*
* @return the BiomeResourceKey of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
@NotNull BiomeResourceKey getResourceKey();

/**
* Returns the BiomeSettings of the CustomBiome.
*
* @return the BiomeSettings of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
@NotNull BiomeSettings getSettings();

/**
* Returns the fog color of the CustomBiome.
*
* @return the fog color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getFogColor();

/**
* Returns the water color of the CustomBiome.
*
* @return the water color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getWaterColor();

/**
* Returns the water fog color of the CustomBiome.
*
* @return the water fog color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getWaterFogColor();

/**
* Returns the sky color of the CustomBiome.
*
* @return the sky color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getSkyColor();

/**
* Returns the foliage color of the CustomBiome.
*
* @return the foliage color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getFoliageColor();

/**
* Returns the grass color of the CustomBiome.
*
* @return the grass color of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
int getGrassColor();

/**
* Returns the ParticleRenderer of the CustomBiome.
*
* @return the ParticleRenderer of the CustomBiome
* @since 0.0.2
* @since 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
@NotNull ParticleRenderer getParticleRenderer();

/**
* This class is used to create a new CustomBiome object.
* It provides methods to set the properties of the CustomBiome.
*
* @version 0.0.2
* @version 0.0.1
*/
@AsOf("0.0.2")
@AsOf("0.0.1")
class Builder {

private BiomeResourceKey resourceKey;
Expand Down

0 comments on commit 753a5cc

Please sign in to comment.