示例#1
0
        //------------------------------------------------------------------
        public Block(Driver driver, Car target)
        {
            this.driver = driver;
            this.target = target;

            Initial = new Generic (Start);
        }
示例#2
0
        private Car closest; // Ahead

        #endregion Fields

        #region Constructors

        //------------------------------------------------------------------
        public Shrink(Driver driver)
        {
            this.driver = driver;
            Initial = new Generic (AnalyzeDistance);
        }
示例#3
0
 //------------------------------------------------------------------
 public Input(Drivers.Player player)
 {
     this.player = player;
     Initial = new Generic (CheckInput);
 }
示例#4
0
 //------------------------------------------------------------------
 public SpeedControl(Driver driver)
 {
     this.driver = driver;
     Initial = new Generic (Start);
 }