mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-27 06:51:16 +00:00
28 lines
815 B
C++
28 lines
815 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_ACHIEVEMENTS_ENABLED;
|
|
extern const Info<bool> RA_LEADERBOARDS_ENABLED;
|
|
extern const Info<bool> RA_RICH_PRESENCE_ENABLED;
|
|
extern const Info<bool> RA_HARDCORE_ENABLED;
|
|
extern const Info<bool> RA_PROGRESS_ENABLED;
|
|
extern const Info<bool> RA_BADGES_ENABLED;
|
|
extern const Info<bool> RA_UNOFFICIAL_ENABLED;
|
|
extern const Info<bool> RA_ENCORE_ENABLED;
|
|
} // namespace Config
|
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|