skip method
void
skip()
Skip this scene.
Implementation
void skip() {
final task = onDoneTask;
if (task != null) {
game.unregisterTask(task);
}
onDone();
}
Skip this scene.
void skip() {
final task = onDoneTask;
if (task != null) {
game.unregisterTask(task);
}
onDone();
}