public VerkeersComponentenLibrary.TStoplichtKleur GetKleur(KruispuntWachtrij wachtrij) { switch (wachtrij.Light) { case Light.GREEN: return VerkeersComponentenLibrary.TStoplichtKleur.skGroen; break; case Light.ORANGE: return VerkeersComponentenLibrary.TStoplichtKleur.skGeel; break; case Light.RED: return VerkeersComponentenLibrary.TStoplichtKleur.skRood; break; } return VerkeersComponentenLibrary.TStoplichtKleur.skGeelKnipper; }
public void addKruispunt(IKruispunt kruispunt, int pos) { kruispunten[pos] = new KruispuntWachtrij(kruispunt); }