public void GeefGas() { if (IsAanHetDraaien == false) { throw new Exception("Motor staat uit."); } else if (Motor.Brandstof == "Batterij") { LinkerVoorwiel.DraaiRond(); RechterVoorwiel.DraaiRond(); LinkerAchterwiel.DraaiRond(); RechterAchterwiel.DraaiRond(); } else if (AantalLiterInTank >= 1) { LinkerVoorwiel.DraaiRond(); RechterVoorwiel.DraaiRond(); LinkerAchterwiel.DraaiRond(); RechterAchterwiel.DraaiRond(); AantalLiterInTank--; } else { throw new Exception("Geen brandstof meer."); } }
public void Remmen() { LinkerVoorwiel.StopMetDraaien(); RechterVoorwiel.StopMetDraaien(); LinkerAchterwiel.StopMetDraaien(); RechterAchterwiel.StopMetDraaien(); }