feat: pacman next cell debug func

This commit is contained in:
2023-09-11 00:22:07 -05:00
parent 95298fbc00
commit a7e87c18a3

View File

@@ -101,6 +101,10 @@ impl Game<'_> {
}
}
}
// Draw the next cell
let next_cell = self.pacman.next_cell(None);
self.draw_cell((next_cell.0 as u32, next_cell.1 as u32), Color::YELLOW);
}
self.canvas.present();