chore: Fix minor lint issue (#3379)

Fix minor lint issue
This commit is contained in:
Luan Nico
2024-12-10 11:35:45 -05:00
committed by GitHub
parent a2cc332161
commit 13b4f70fe3

View File

@ -13,7 +13,7 @@ class ResizingRectangle extends RectangleComponent {
void onGameResize(Vector2 size) {
super.onGameResize(size);
this.size = size * .4;
this.size = size * 0.4;
}
}