From 8ca8bb70adaa90ec14a2a979ed81594d9ffae06f Mon Sep 17 00:00:00 2001 From: arturplaczek Date: Fri, 22 Apr 2022 11:39:43 +0200 Subject: [PATCH] chore: add dino & android GameBonus --- lib/game/bloc/game_state.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/game/bloc/game_state.dart b/lib/game/bloc/game_state.dart index c57eedb4..98bf8946 100644 --- a/lib/game/bloc/game_state.dart +++ b/lib/game/bloc/game_state.dart @@ -12,6 +12,12 @@ enum GameBonus { /// Bonus achieved when a ball enters Sparky's computer. sparkyTurboCharge, + + /// Bonus achieved when the ball goes in the dino mouth. + dino, + + /// Bonus achieved when a ball enters the android spaceship. + android, } /// {@template game_state}