mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-05 21:39:39 -06:00

Was informed by the RetroAchievements team that this isn't an option in most emulators, and as the next commits will be to enable default icons, there will always be something to display.
26 lines
723 B
C++
26 lines
723 B
C++
// Copyright 2023 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
extern const Info<bool> RA_ENABLED;
|
|
extern const Info<std::string> RA_USERNAME;
|
|
extern const Info<std::string> RA_HOST_URL;
|
|
extern const Info<std::string> RA_API_TOKEN;
|
|
extern const Info<bool> RA_HARDCORE_ENABLED;
|
|
extern const Info<bool> RA_UNOFFICIAL_ENABLED;
|
|
extern const Info<bool> RA_ENCORE_ENABLED;
|
|
extern const Info<bool> RA_SPECTATOR_ENABLED;
|
|
extern const Info<bool> RA_DISCORD_PRESENCE_ENABLED;
|
|
extern const Info<bool> RA_PROGRESS_ENABLED;
|
|
} // namespace Config
|
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|