Exemple #1
0
 protected Controller(Car.Redraw redraw)
 {
     Car        = new Car(redraw);
     Recorder   = new Recorder.Recorder();
     Algorithms = new ObservableCollection <Algorithm>
     {
         new NormalAlgorithm(),
         new Algorithms.GeneticAlgorithm()
     };
 }
Exemple #2
0
 public HumanController(Car.Redraw redraw) : base(redraw)
 {
 }
 public AlgorithController(Car.Redraw redraw) : base(redraw)
 {
 }