24 lines
464 B
Java
24 lines
464 B
Java
|
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;
|
||
|
}
|
||
|
}
|