skip method

void skip()

Skip this scene.

Implementation

void skip() {
  final task = onDoneTask;
  if (task != null) {
    game.unregisterTask(task);
  }
  onDone();
}