mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
20 lines
387 B
C#
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);
|
|
|
|
|
|
}
|
|
}
|
|
}
|