|
|
@ -9,22 +9,22 @@ void addDashNestBumperStories(Dashbook dashbook) {
|
|
|
|
dashbook.storiesOf('Flutter Forest')
|
|
|
|
dashbook.storiesOf('Flutter Forest')
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Signpost',
|
|
|
|
title: 'Signpost',
|
|
|
|
description: SignpostGame.info,
|
|
|
|
description: SignpostGame.description,
|
|
|
|
gameBuilder: (_) => SignpostGame(),
|
|
|
|
gameBuilder: (_) => SignpostGame(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Big Dash Nest Bumper',
|
|
|
|
title: 'Big Dash Nest Bumper',
|
|
|
|
description: BigDashNestBumperGame.info,
|
|
|
|
description: BigDashNestBumperGame.description,
|
|
|
|
gameBuilder: (_) => BigDashNestBumperGame(),
|
|
|
|
gameBuilder: (_) => BigDashNestBumperGame(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Small Dash Nest Bumper A',
|
|
|
|
title: 'Small Dash Nest Bumper A',
|
|
|
|
description: SmallDashNestBumperAGame.info,
|
|
|
|
description: SmallDashNestBumperAGame.description,
|
|
|
|
gameBuilder: (_) => SmallDashNestBumperAGame(),
|
|
|
|
gameBuilder: (_) => SmallDashNestBumperAGame(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Small Dash Nest Bumper B',
|
|
|
|
title: 'Small Dash Nest Bumper B',
|
|
|
|
description: SmallDashNestBumperBGame.info,
|
|
|
|
description: SmallDashNestBumperBGame.description,
|
|
|
|
gameBuilder: (_) => SmallDashNestBumperBGame(),
|
|
|
|
gameBuilder: (_) => SmallDashNestBumperBGame(),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|