citra/src/network/network_settings.h

20 lines
384 B
C++
Raw Normal View History

2020-08-20 07:46:35 +00:00
// Copyright 2020 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
namespace NetSettings {
struct Values {
// WebService
bool enable_telemetry;
std::string web_api_url;
std::string citra_username;
std::string citra_token;
} extern values;
} // namespace NetSettings