Code/net/minecraft/sounds/SoundSource.java

24 lines
464 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.sounds;
public enum SoundSource {
MASTER("master"),
MUSIC("music"),
RECORDS("record"),
WEATHER("weather"),
BLOCKS("block"),
HOSTILE("hostile"),
NEUTRAL("neutral"),
PLAYERS("player"),
AMBIENT("ambient"),
VOICE("voice");
private final String name;
private SoundSource(final String p_12675_) {
this.name = p_12675_;
}
public String getName() {
return this.name;
}
}