10e1395de8
* basic template for mod downloading * better checks for unloading? * Mod download stuff * debug prints * basic UI popup for mod downloading * change notify location + abort download * Prevent mods from loading lua files * cleanup, fixes, mod aborting * use correct pipelines * change some messages * fix mod downloading * not a component * fix hardcoded changes Co-authored-by: Federico Cecchetto <fedecek3@gmail.com>
11 lines
203 B
C++
11 lines
203 B
C++
#pragma once
|
|
|
|
#include "game/game.hpp"
|
|
#include <utils/info_string.hpp>
|
|
|
|
namespace download
|
|
{
|
|
void start_download(const game::netadr_s& target, const utils::info_string& info);
|
|
void stop_download();
|
|
}
|