mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-31 11:33:27 +00:00
18 lines
641 B
C++
18 lines
641 B
C++
// Copyright 2020 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "Core/Config/FreeLookSettings.h"
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
const Info<bool> FREE_LOOK_ENABLED{{System::FreeLook, "General", "Enabled"}, false};
|
|
const Info<bool> FREE_LOOK_BACKGROUND_INPUT{{System::FreeLook, "General", "BackgroundInput"},
|
|
false};
|
|
|
|
// FreeLook.Controller1
|
|
const Info<FreeLook::ControlType> FL1_CONTROL_TYPE{{System::FreeLook, "Camera1", "ControlType"},
|
|
FreeLook::ControlType::SixAxis};
|
|
|
|
} // namespace Config
|