More notes on the next things to do.

This commit is contained in:
Zed A. Shaw 2024-11-07 02:06:22 -05:00
parent 011fee4872
commit 0e79288afc
8 changed files with 31 additions and 6 deletions

View file

@ -27,6 +27,7 @@ void save::to_file(fs::path path, DinkyECS::World &world, Map &map) {
extract<Combat>(world, save_data.combat);
extract<Motion>(world, save_data.motion);
extract<Tile>(world, save_data.tile);
extract<Inventory>(world, save_data.inventory);
archive.save(save_data);
std::string_view archive_view = archive.get_buffer();
@ -68,6 +69,7 @@ void save::from_file(fs::path path, DinkyECS::World &world_out, Map &map_out) {
inject<Combat>(world_out, save_data.combat);
inject<Motion>(world_out, save_data.motion);
inject<Tile>(world_out, save_data.tile);
inject<Inventory>(world_out, save_data.inventory);
map_out = Map(save_data.map.input_map,
save_data.map.walls, save_data.map.limit);