Terraria.ModLoader.SoundLoader.SoundLoader C# (CSharp) Method

SoundLoader() static private method

static private SoundLoader ( ) : System
return System
        static SoundLoader()
        {
            foreach (SoundType type in Enum.GetValues(typeof(SoundType)))
            {
                nextSound[type] = GetNumVanilla(type);
                sounds[type] = new Dictionary<string, int>();
                modSounds[type] = new Dictionary<int, ModSound>();
            }
        }