move AirStart extension files from .../impl/ to .../example

add getDescription() to AirStart extension
This commit is contained in:
JoePfeiffer 2022-12-07 14:58:58 -07:00
parent 9a51bda56d
commit ba630ab37e
3 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,11 @@ public class AirStart extends AbstractSimulationExtension {
return name;
}
@Override
public String getDescription() {
return "Start simulation with a configurable altitude and velocity";
}
public double getLaunchAltitude() {
return config.getDouble("launchAltitude", 0.0);
}