#ifndef MAPDUMP_HPP #define MAPDUMP_HPP #include #include #include #include #include "utils.hpp" struct map_t { int id; std::string custom_name; bool locked; map_data_t map_data; }; struct map_group_t { std::string title; std::string author; int hc; int vc; std::vector ids; std::vector populated; }; bool load_dumps(const char *fn, std::vector &dumps); std::vector load_tally(const char *fn); #endif