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; @Nullable private final String subtitle; public SoundEventRegistration(final List sounds, final boolean replace, @Nullable final String subtitle) { this.sounds = sounds; this.replace = replace; this.subtitle = subtitle; } public List getSounds() { return this.sounds; } public boolean isReplace() { return this.replace; } @Nullable public String getSubtitle() { return this.subtitle; } }