minecraft-src/net/minecraft/sounds/SoundSource.java
2025-09-18 12:27:44 +00:00

25 lines
411 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"),
UI("ui");
private final String name;
private SoundSource(final String name) {
this.name = name;
}
public String getName() {
return this.name;
}
}