blob: c22ef2b5f16112085430f7ee49ac75609a34ea1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2023 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "InputCommon/ControllerInterface/InputBackend.h"
#include <memory>
namespace ciface::SteamDeck
{
std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface);
}
|