001    package net.minecraft.client.audio;
002    
003    import cpw.mods.fml.relauncher.Side;
004    import cpw.mods.fml.relauncher.SideOnly;
005    import java.net.URL;
006    
007    @SideOnly(Side.CLIENT)
008    public class SoundPoolEntry
009    {
010        public String soundName;
011        public URL soundUrl;
012    
013        public SoundPoolEntry(String par1Str, URL par2URL)
014        {
015            this.soundName = par1Str;
016            this.soundUrl = par2URL;
017        }
018    }