2021-04-08 20:09:59 +08:00
|
|
|
using System;
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
namespace ET
|
|
|
|
{
|
2022-05-29 23:02:28 +08:00
|
|
|
|
2021-04-08 20:09:59 +08:00
|
|
|
|
|
|
|
public static class ConsoleMode
|
|
|
|
{
|
|
|
|
public const string None = "";
|
|
|
|
public const string Repl = "repl";
|
|
|
|
}
|
|
|
|
|
|
|
|
public class ConsoleComponent : Entity
|
|
|
|
{
|
|
|
|
public CancellationTokenSource CancellationTokenSource;
|
|
|
|
public string Mode = "";
|
|
|
|
}
|
|
|
|
}
|