Files
ParkingRobot/ClumsyPilot/PilotDefinition.cs
T

15 lines
429 B
C#
Raw Normal View History

2026-07-21 11:11:01 +08:00
using ClumsyCore;
using ClumsyCore.Interfaces;
using ClumsyCore.Pilot;
using FundamentalLib;
using MDCSToolBox.Clumsy.Pilot.MultiWheel;
namespace MultiWheelC;
public class PilotDefinition : MultiWheelPilotDefinition<PilotConfig, PilotDefinition>
{
public new float CarLength = 1472f;
public new float CarWidth = 948f;
[AsLowerIO(desc = "车号")] public int CarNum = 1;
2026-07-21 17:38:16 +08:00
public override void StandardInit() { }
2026-07-21 11:11:01 +08:00
}