diff --git a/tile_grid.py b/tile_grid.py index 72a0f43..a6e73bd 100644 --- a/tile_grid.py +++ b/tile_grid.py @@ -10,7 +10,7 @@ from tile import fly def draw_tile_grid(width, height, tile_size, tile_function): """Draws a (width x height) grid, with tile_function drawn on each tile. - (Your explanation here.) + This function draws square tiles with the function described in tile_fuction on it, then once its completed the needed amount of squares in that row it returns back to the orginal x and y point and moves up 1 in y to start the next row """ for y in range(height): for x in range(width):