001package net.minecraftforge.client.event.sound;
002
003import net.minecraft.client.audio.SoundManager;
004
005public class PlaySoundSourceEvent extends SoundEvent
006{
007    public final SoundManager manager;
008    public final String name;
009    public final float x;
010    public final float y;
011    public final float z;
012    public PlaySoundSourceEvent(SoundManager manager, String name, float x, float y, float z)
013    {
014        this.manager = manager;
015        this.name = name;
016        this.x = x;
017        this.y = y;
018        this.z = z;
019    }
020}