Add flame_lint to examples (#1090)

This commit is contained in:
Lukas Klingsbo
2021-11-12 10:35:56 +01:00
committed by GitHub
parent 3a60f25401
commit d53ac50859
7 changed files with 91 additions and 218 deletions

View File

@ -212,12 +212,14 @@ class CollidableSnowman extends MyCollidable {
addHitbox(top);
addHitbox(middle);
addHitbox(bottom);
add(randomCollidable(
Vector2(size.x / 2, size.y * 0.75),
size / 4,
Vector2.zero(),
screenCollidable,
));
add(
randomCollidable(
Vector2(size.x / 2, size.y * 0.75),
size / 4,
Vector2.zero(),
screenCollidable,
),
);
}
}