mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-12 07:28:57 +01:00
24 lines
415 B
C++
24 lines
415 B
C++
// Copyright 2020 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
namespace FreeLook
|
|
{
|
|
enum class ControlType : int;
|
|
}
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
|
|
extern const Info<bool> FREE_LOOK_ENABLED;
|
|
|
|
// FreeLook.Controller1
|
|
extern const Info<FreeLook::ControlType> FL1_CONTROL_TYPE;
|
|
|
|
} // namespace Config
|