* Changes the amount of remaining seconds the UFO has left on the ground. * After this many seconds thet UFO will take off, if landed, or disappear, if * crashed. * @param seconds Amount of seconds. */
| 335 | * @param seconds Amount of seconds. |
| 336 | */ |
| 337 | void Ufo::setSecondsRemaining(size_t seconds) |
| 338 | { |
| 339 | _secondsRemaining = seconds; |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Returns the current direction the UFO is heading in. |
no outgoing calls
no test coverage detected