ISoundHandler.java 365 Bytes
/*
 * This file is part of LiteLoader.
 * Copyright (C) 2012-16 Adam Mummery-Smith
 * All Rights Reserved.
 */
package com.mumfrey.liteloader.client.overlays;

import net.minecraft.client.audio.SoundList;
import net.minecraft.util.ResourceLocation;

public interface ISoundHandler
{
    public abstract void addSound(ResourceLocation sound, SoundList soundList);
}