Fixes examples that had unused params

This commit is contained in:
Maurizio Crocci 2021-07-10 03:26:08 +01:00
parent ab5431403c
commit 73a76bf849
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ pub fn main() anyerror!void
var spacing: i32 = 0;
for (buildings) |building, i|
for (buildings) |_, i|
{
buildings[i].width = @intToFloat(f32, GetRandomValue(50, 200));
buildings[i].height = @intToFloat(f32, GetRandomValue(100, 800));