Files
CMLeonOS/shell/Commands/Info/About.cs
2026-02-26 13:33:53 +08:00

14 lines
270 B
C#

using System;
namespace CMLeonOS.Commands
{
public static class AboutCommand
{
public static void ProcessAbout()
{
Console.WriteLine("CMLeonOS Project");
Console.WriteLine("By LeonOS 2 Developer Team");
}
}
}