13 lines
209 B
C++
13 lines
209 B
C++
#pragma once
|
|
|
|
namespace config {
|
|
struct OverrideUrls {
|
|
bool force_http = true;
|
|
std::string api_url;
|
|
std::string asset_url;
|
|
};
|
|
|
|
void load();
|
|
const OverrideUrls& get();
|
|
}
|