mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-08 09:02:19 -04:00
Added some new visibility toggles so players can choose what to show (or hide) during their RetroAchievements runs: Toggle for the Speedrun Leaderboards timer Toggle for Achievement Challenge badges
28 lines
836 B
C++
28 lines
836 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_LEADERBOARD_TRACKER_ENABLED;
|
|
extern const Info<bool> RA_CHALLENGE_INDICATORS_ENABLED;
|
|
extern const Info<bool> RA_DISCORD_PRESENCE_ENABLED;
|
|
extern const Info<bool> RA_PROGRESS_ENABLED;
|
|
} // namespace Config
|
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|