From b89e076bd84118d4eed837dff49e6fecd6d2c7fb Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 29 Mar 2022 17:17:21 +0100 Subject: [PATCH] feat: added board priority --- lib/game/components/board.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/game/components/board.dart b/lib/game/components/board.dart index 1f96120e..a8f915e6 100644 --- a/lib/game/components/board.dart +++ b/lib/game/components/board.dart @@ -6,7 +6,8 @@ import 'package:pinball/game/game.dart'; /// {endtemplate} class Board extends Component { /// {@macro board} - Board(); + // TODO(alestiago): Make Board a Blueprint and sort out priorities. + Board() : super(priority: 5); @override Future onLoad() async {