More followups from #667 : Unifying constructor logic + small improvements and docs (#681)

This commit is contained in:
Luan Nico
2021-02-23 17:38:19 -05:00
committed by GitHub
parent 9c38c9bd04
commit 062b73d5f5
14 changed files with 89 additions and 55 deletions

View File

@@ -29,8 +29,6 @@ class MyGame extends BaseGame {
size: Vector2.all(32),
sprite: Sprite(image),
),
).forEach((sprite) {
add(sprite);
});
).forEach(add);
}
}