minor edit

This commit is contained in:
Josh Guyette 2022-06-26 00:23:24 -05:00
parent a091e97013
commit 019b0d703c
1 changed files with 1 additions and 3 deletions

View File

@ -13,8 +13,7 @@ export const entities = (restart: boolean = false) => {
let world = engine.world;
const topInset = (global as any).topInset; // for notch handling
const newBalloon = () => {
return Balloon(
const newBalloon = () => Balloon(
world,
"red",
{
@ -23,7 +22,6 @@ export const entities = (restart: boolean = false) => {
},
{ width: 50, height: 50 }
);
};
let entities = {
physics: { engine, world },