Skip to content

Commit d7c8bb3

Browse files
committed
feat(enhanced-particle-api): missing javadoc stuff
1 parent 46b2291 commit d7c8bb3

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

main/src/main/java/me/outspending/biomesapi/wrapper/environment/particles/ParticleCatalog.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
/**
1515
* A catalog of ambient particles for a biome.
16+
*
17+
* @since 1.1.0
18+
* @author Jsinco
1619
* @param particles The list of wrapped ambient particles.
1720
*/
1821
@AsOf("1.1.0")

main/src/main/java/me/outspending/biomesapi/wrapper/environment/particles/ParticleData.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
/**
99
* An interface for particle data that can be applied to a specific particle type.
10+
*
11+
* @see ParticleCatalog
12+
* @since 1.1.0
13+
* @author Jsinco
1014
* @param <T> The type of ParticleOptions associated with the particle data.
1115
*/
1216
public interface ParticleData<T extends ParticleOptions> {

main/src/main/java/me/outspending/biomesapi/wrapper/environment/particles/WrappedAmbientParticle.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
/**
1212
* A wrapper for ambient particles in a biome, including their type, probability, and optional data.
1313
*
14+
* @see ParticleCatalog
15+
* @since 1.1.0
16+
* @author Jsinco
1417
* @param <T> The type of ParticleOptions associated with the particle.
1518
*/
1619
@AsOf("1.1.0")

0 commit comments

Comments
 (0)