// // Created by tv on 30.04.23. // #ifndef SPOONTOOL_MAP_H #define SPOONTOOL_MAP_H #include #include #include struct Map { //STREEFUNCS Map(); void Save(boost::filesystem::path FileLocation); boost::filesystem::path ActiveLocation = ""; void Export(boost::filesystem::path YamlOut); std::vector Objects; std::vector Rails; Element* GetElementById(std::string id); }; Map ConvertFromYaml(boost::filesystem::path File); #endif //SPOONTOOL_MAP_H