Terraria.ModLoader.SoundLoader.SoundLoader C# (CSharp) 메소드

SoundLoader() 정적인 개인적인 메소드

static private SoundLoader ( ) : System
리턴 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>();
            }
        }