using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.Demo.Pacman.Sounds { class Intro { public static void Play(float nothing) { Console.Beep(516, 10); Console.Beep(559, 50); Console.Beep(516, 10); Console.Beep(129, 70); } } }