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

19 lines
483 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;
/**
* This event is raised by the SoundManager when it does its first setup of the
* SoundSystemConfig's codecs, use this function to add your own codecs.
*/
public class SoundSetupEvent extends SoundEvent
{
@Deprecated
public final SoundManager manager;
public SoundSetupEvent(SoundManager manager)
{
super(manager);
this.manager = manager;
}
}