Files
CMLeonOS/shell/Commands/Info/About.cs

14 lines
273 B
C#
Raw Normal View History

2026-02-04 19:04:14 +08:00
using System;
namespace CMLeonOS.Commands
{
public static class AboutCommand
{
public static void ProcessAbout()
{
Console.WriteLine("CMLeonOS Project");
Console.WriteLine("By LeonOS 2 Developement Team");
}
}
}