Files
CMLeonOS/shell/Commands/Utility/BeepCommand.cs

13 lines
192 B
C#
Raw Normal View History

2026-02-04 21:37:05 +08:00
using System;
namespace CMLeonOS.Commands.Utility
{
public static class BeepCommand
{
public static void ProcessBeep()
{
Console.Beep();
}
}
}