Skip to content

Commit

Permalink
chore: Fix minor lint issue (#3379)
Browse files Browse the repository at this point in the history
Fix minor lint issue
  • Loading branch information
luanpotter authored Dec 10, 2024
1 parent a2cc332 commit 13b4f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/lib/stories/system/resize_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ResizingRectangle extends RectangleComponent {
void onGameResize(Vector2 size) {
super.onGameResize(size);

this.size = size * .4;
this.size = size * 0.4;
}
}

Expand Down

0 comments on commit 13b4f70

Please sign in to comment.