Cosmos/source/Cosmos.Demo.PacMan/Sounds/Intro.cs
2009-11-01 15:00:02 +00:00

20 lines
374 B
C#

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