mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-07-13 21:02:08 +08:00
21 lines
526 B
C#
21 lines
526 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using SheasCore;
|
|
|
|
namespace Sheas_Cealer
|
|
{
|
|
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);
|
|
}
|
|
} |