From cc738decd6822f2ec9f539a5631580d18f28345e Mon Sep 17 00:00:00 2001 From: alestiago Date: Wed, 6 Apr 2022 12:45:45 +0100 Subject: [PATCH] refactor: removed bonusBallLost event --- lib/game/bloc/game_event.dart | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/game/bloc/game_event.dart b/lib/game/bloc/game_event.dart index f3658ad6..b05c5336 100644 --- a/lib/game/bloc/game_event.dart +++ b/lib/game/bloc/game_event.dart @@ -18,16 +18,6 @@ class BallLost extends GameEvent { List get props => []; } -/// {@template bonus_ball_lost_game_event} -/// Event added when a user drops a bonus ball of the screen. -/// {@endtemplate} -class BonusBallLost extends GameEvent { - const BonusBallLost(); - - @override - List get props => []; -} - /// {@template scored_game_event} /// Event added when a user increases their score. /// {@endtemplate}