From ad6afddf155125682c826c0fabe8108eda373b55 Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Wed, 2 Mar 2022 18:24:45 -0300 Subject: [PATCH] fix: rebasing issues --- lib/game/components/ball.dart | 1 - lib/game/pinball_game.dart | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/game/components/ball.dart b/lib/game/components/ball.dart index 3aa978d3..39257bb6 100644 --- a/lib/game/components/ball.dart +++ b/lib/game/components/ball.dart @@ -6,7 +6,6 @@ import 'package:pinball/game/game.dart'; class Ball extends BodyComponent with BlocComponent { - Ball({ required Vector2 position, }) : _position = position { diff --git a/lib/game/pinball_game.dart b/lib/game/pinball_game.dart index 0c160316..2ee242da 100644 --- a/lib/game/pinball_game.dart +++ b/lib/game/pinball_game.dart @@ -1,7 +1,7 @@ // ignore_for_file: avoid_renaming_method_parameters import 'package:flame_bloc/flame_bloc.dart'; -import 'package:flame_forge2d/forge2d_game.dart'; +import 'package:flame_forge2d/flame_forge2d.dart'; import 'package:pinball/game/game.dart'; class BallWallContactCallback extends ContactCallback {