跳到主要内容
版本:2.0

ServerStatus

服务器状态

declare enum ServerStatus {
/**
* 未知
*/
Unknown = 0,

/**
* 已停止
*/
Stopped = 1,

/**
* 运行中
*/
Running = 2,

}