package net.minecraft.client.resources.sounds; import java.util.List; import org.jspecify.annotations.Nullable; public class SoundEventRegistration { private final List sounds; private final boolean replace; private final @Nullable String subtitle; public SoundEventRegistration(final List sounds, final boolean replace, final @Nullable String subtitle) { this.sounds = sounds; this.replace = replace; this.subtitle = subtitle; } public List getSounds() { return this.sounds; } public boolean isReplace() { return this.replace; } public @Nullable String getSubtitle() { return this.subtitle; } }