chore: removed comments

pull/359/head
RuiAlonso 3 years ago
parent 28aa239914
commit 35e85fbb4f

@ -88,7 +88,6 @@ class Backbox extends PositionComponent with ZIndex {
); );
}, },
onNavigate: () { onNavigate: () {
print("OPEN ${ShareRepository.openSourceUrl}");
openLink(ShareRepository.openSourceUrl); openLink(ShareRepository.openSourceUrl);
}, },
), ),

@ -42,14 +42,13 @@ class BackboxBloc extends Bloc<BackboxEvent, BackboxState> {
) async { ) async {
try { try {
emit(LoadingState()); emit(LoadingState());
/*await _leaderboardRepository.addLeaderboardEntry( await _leaderboardRepository.addLeaderboardEntry(
LeaderboardEntryData( LeaderboardEntryData(
playerInitials: event.initials, playerInitials: event.initials,
score: event.score, score: event.score,
character: event.character.toType, character: event.character.toType,
), ),
);*/ );
await Future<void>.delayed(Duration(seconds: 2));
emit( emit(
InitialsSuccessState( InitialsSuccessState(
initials: event.initials, initials: event.initials,

@ -71,7 +71,7 @@ class GameOverInfoDisplay extends Component with HasGameRef {
@override @override
Future<void> onLoad() async { Future<void> onLoad() async {
await super.onLoad(); await super.onLoad();
//gameRef.overlays.add(PinballGame.replayButtonOverlay); gameRef.overlays.add(PinballGame.replayButtonOverlay);
} }
} }

Loading…
Cancel
Save