Compare commits

..

1 Commits

Author SHA1 Message Date
a7e87c18a3 feat: pacman next cell debug func 2025-06-17 11:54:13 -05:00

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();