#pragma once #include "game/game.hpp" #include namespace download { struct file_t { std::string name; std::string hash; }; void start_download(const game::netadr_s& target, const utils::info_string& info, const std::vector& files); void stop_download(); }