mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-07-14 05:12:09 +08:00
20 lines
478 B
C#
20 lines
478 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using SheasCore;
|
|
|
|
namespace Sheas_Cealer.Utils;
|
|
|
|
internal class Command : Proc
|
|
{
|
|
internal Command() : base("Cmd.exe")
|
|
{
|
|
}
|
|
|
|
public override void Process_OutputDataReceived(object sender, DataReceivedEventArgs e)
|
|
{
|
|
}
|
|
public override void Process_ErrorDataReceived(object sender, DataReceivedEventArgs e)
|
|
{
|
|
}
|
|
public override void Process_Exited(object sender, EventArgs e) => Environment.Exit(0);
|
|
} |