implemented one-way tracks

This commit is contained in:
Stephan Richter
2020-09-20 17:49:54 +02:00
parent cd022ce4a3
commit bcfa6e79aa
14 changed files with 136 additions and 8 deletions

View File

@@ -5,4 +5,9 @@ public class Locomotive extends Car {
public Locomotive(String name) {
super(name);
}
public void setSpeed(int v) {
// TODO Auto-generated method stub
}
}