Cosmos/source/Cosmos.Demo.PacMan/Sounds/Intro.cs
2008-09-27 13:25:31 +00:00

20 lines
387 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(float nothing)
{
Console.Beep(516, 10);
Console.Beep(559, 50);
Console.Beep(516, 10);
Console.Beep(129, 70);
}
}
}