Esempio n. 1
0
        public void AllocateChannels()
        {
            InitAudio();
            //Console.WriteLine("channels allocated: " );
            int results = SdlMixer.Mix_AllocateChannels(16);

            Console.WriteLine("Channels Allocated: " + results.ToString());
            Assert.AreEqual(results, 16);
            QuitAudio();
        }