mirror of
https://github.com/citra-emu/citra.git
synced 2025-04-09 03:10:12 +00:00
19 lines
503 B
C++
19 lines
503 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <tuple>
|
|
|
|
#include "core/hle/service/hid/hid.h"
|
|
|
|
class EmuWindow;
|
|
|
|
namespace KeyMap {
|
|
extern const std::array<Service::HID::PadState, Settings::NativeInput::NUM_INPUTS> mapping_targets;
|
|
extern const std::array<Service::HID::PadState, 4> analog_inputs;
|
|
constexpr int MAX_CIRCLEPAD_POS = 0x9C; /// Max value for a circle pad position
|
|
}
|