Files
CMLeonOS/shell/Commands/Utility/BeepCommand.cs
2026-02-04 21:37:05 +08:00

13 lines
192 B
C#

using System;
namespace CMLeonOS.Commands.Utility
{
public static class BeepCommand
{
public static void ProcessBeep()
{
Console.Beep();
}
}
}