Skip to content

Commit

Permalink
Make PlayableSound parameters public
Browse files Browse the repository at this point in the history
  • Loading branch information
srnyx committed Aug 29, 2023
1 parent 971b4e8 commit 7ab9ffa
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ public class PlayableSound extends Stringable {
/**
* The {@link Sound} to play
*/
@NotNull private final Sound sound;
@NotNull public final Sound sound;
/**
* The SoundCategory to play the {@link Sound} in
*/
@Nullable private final Object category;
@Nullable public final Object category;
/**
* The volume to play the {@link Sound} at
*/
private final float volume;
public final float volume;
/**
* The pitch to play the {@link Sound} at
*/
private final float pitch;
public final float pitch;

/**
* {@code 1.11+} Creates a new {@link PlayableSound} object
Expand Down

0 comments on commit 7ab9ffa

Please sign in to comment.