Exemplo n.º 1
0
        //------------------------------------------------------------------
        public Block(Driver driver, Car target)
        {
            this.driver = driver;
            this.target = target;

            Initial = new Generic (Start);
        }
Exemplo n.º 2
0
        private Car closest; // Ahead

        #endregion Fields

        #region Constructors

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