SIC-12/App/SicUI/Controls/Common/RobotConstant.cs

16 lines
349 B
C#
Raw Permalink Normal View History

2026-03-24 15:04:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SicUI.Controls.Common
{
public class RobotConstant
{
public const string RobotRetract = "0";
public const string RobotExtend = "1";
public const string UnknownTarget = "Unknown";
}
}