/// <summary> /// Creates the handlers. /// </summary> public void CreateHandlers() { this.benchHandler = new BenchHandler(this.map); this.carHandler = new CarHandler(this.map); this.characterHandler = new CharacterHandler(this.map); this.patientHandler = new PatientHandler(this.map); this.buildingHandler = new BuildingHandler(this.map); this.treeHandler = new TreeHandler(this.map); this.televisieHandler = new TVHandler(this.map); }
public void SetUp() { map = Map.Instance(); handler = new BuildingHandler(map); }