dolphin/Source/Core/Common/Config/Enums.h
LillyJadeKatrin 07d2f3d305 Added Initial Achievement Settings
Added AchievementSettings in Config with RA_INTEGRATION_ENABLED, RA_USERNAME, and RA_API_TOKEN. Includes code to load and store from Achievements.ini file in config folder.
2023-04-03 21:17:44 -04:00

49 lines
739 B
C++

// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <array>
namespace Config
{
// Layers in ascending order of priority.
enum class LayerType
{
Base,
CommandLine,
GlobalGame,
LocalGame,
Movie,
Netplay,
CurrentRun,
Meta,
};
enum class System
{
Main,
SYSCONF,
GCPad,
WiiPad,
GCKeyboard,
GFX,
Logger,
Debugger,
DualShockUDPClient,
FreeLook,
Session,
GameSettingsOnly,
Achievements,
};
constexpr std::array<LayerType, 7> SEARCH_ORDER{{
LayerType::CurrentRun,
LayerType::Netplay,
LayerType::Movie,
LayerType::LocalGame,
LayerType::GlobalGame,
LayerType::CommandLine,
LayerType::Base,
}};
} // namespace Config