CTUPointCode.cs
312 字节
using CtuDeviceLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TheMachine
{
public class CTUPointCode : PointCode
{
public new float X { get; set; } = -1;
public new float Y { get; set; } = -1;
}
}