1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 22:12:59 +00:00

nilrider:: full interface for loading ghosts

This commit is contained in:
Zeno Rogue
2024-08-20 19:14:13 +02:00
parent 4f27a969e4
commit beecfa9f94
3 changed files with 23 additions and 8 deletions

View File

@@ -202,4 +202,9 @@ void save_manual_replay() {
save();
}
void level::load_all_ghosts() {
for(auto& g: plan_replays) load_plan_as_ghost(g);
for(auto& g: manual_replays) load_manual_as_ghost(g);
}
}