ForgePatch/src/main/java/net/minecraftforge/client/event/sound/SoundLoadEvent.java

17 lines
415 B
Java
Raw Normal View History

package net.minecraftforge.client.event.sound;
2012-12-13 05:58:35 +00:00
import net.minecraft.client.audio.SoundManager;
/**
* Raised by the SoundManager.loadSoundSettings, this would be a good place for
* adding your custom sounds to the SoundPool.
*/
public class SoundLoadEvent extends SoundEvent
{
public final SoundManager manager;
public SoundLoadEvent(SoundManager manager)
{
this.manager = manager;
}
}