mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 00:16:51 +08:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
(function() {
|
|
// inObject
|
|
// returnObject
|
|
// modelSet, not available in reverse lookup
|
|
returnObject.aircraftIcao = "C172";
|
|
returnObject.modified = true;
|
|
returnObject.rerun = true;
|
|
returnObject.logMessage = "Changed to C172";
|
|
|
|
return returnObject;
|
|
|
|
// string return is possible
|
|
// return "Changed ICAO to C172";
|
|
})
|
|
|
|
|