mirror of
https://github.com/flame-engine/flame.git
synced 2025-10-30 00:17:20 +08:00
15 lines
417 B
Dart
15 lines
417 B
Dart
import 'package:dashbook/dashbook.dart';
|
|
import 'package:flame/game.dart';
|
|
|
|
import '../../commons/commons.dart';
|
|
import 'pause_resume_game.dart';
|
|
|
|
void addSystemStories(Dashbook dashbook) {
|
|
dashbook.storiesOf('System').add(
|
|
'Pause/resume engine',
|
|
(_) => GameWidget(game: PauseResumeGame()),
|
|
codeLink: baseLink('system/pause_resume_game.dart'),
|
|
info: PauseResumeGame.info,
|
|
);
|
|
}
|