mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 01:30:13 +01:00
13 lines
163 B
C++
13 lines
163 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <QObject>
|
|
|
|
struct pad_device_info
|
|
{
|
|
std::string name;
|
|
bool is_connected{false};
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(pad_device_info)
|