17 lines
353 B
C#
17 lines
353 B
C#
|
|
using Rovinj.Tunnel;
|
|||
|
|
|
|||
|
|
namespace LolaiService.Global
|
|||
|
|
{
|
|||
|
|
public static class GlobalData
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 隧道机是否已连接
|
|||
|
|
/// </summary>
|
|||
|
|
public static bool isTunnelConnected = false;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 隧道机接口
|
|||
|
|
/// </summary>
|
|||
|
|
public static ITunnel tunnel;
|
|||
|
|
}
|
|||
|
|
}
|