mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-11-21 17:02:20 +00:00
29 lines
480 B
C++
29 lines
480 B
C++
// Copyright 2020 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Config/ConfigInfo.h"
|
|
|
|
namespace FreeLook
|
|
{
|
|
enum class ControlType : int
|
|
{
|
|
SixAxis,
|
|
FPS,
|
|
Orbital
|
|
};
|
|
}
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
|
|
extern const Info<bool> FREE_LOOK_ENABLED;
|
|
extern const Info<bool> FREE_LOOK_BACKGROUND_INPUT;
|
|
|
|
// FreeLook.Controller1
|
|
extern const Info<FreeLook::ControlType> FL1_CONTROL_TYPE;
|
|
|
|
} // namespace Config
|