23 lines
516 B
C#
23 lines
516 B
C#
using System.Threading.Tasks;
|
|||
|
|
using SimpleComposer.RCS;
|
||
|
|
using SimpleCore.PropType;
|
||
|
|
|
||
|
|
namespace MultiWheelS
|
||
|
|
{
|
||
|
|
[CarType(Name = "多车联动AGV")]
|
||
|
|
public class MultiVehicleCar : GhostCar
|
||
|
|
{
|
||
|
|
public bool MultiVehicleSync = true;
|
||
|
|
|
||
|
|
public static new async Task<MultiVehicleCar> Create()
|
||
|
|
{
|
||
|
|
return new MultiVehicleCar
|
||
|
|
{
|
||
|
|
lstatus = "连接中",
|
||
|
|
address = "127.0.0.1",
|
||
|
|
name = "联动AGV"
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|