preparing trains

This commit is contained in:
Stephan Richter
2020-09-18 23:07:20 +02:00
parent f54ef60d05
commit 2f3251660d
7 changed files with 76 additions and 72006 deletions

View File

@@ -0,0 +1,8 @@
package de.srsoftware.web4rail.moving;
public class Locomotive extends Car {
public Locomotive(String name) {
super(name);
}
}