rpcsx/rpcs3qt-legacy/pad_device_info.h
2025-04-06 23:55:46 +03:00

14 lines
188 B
C++

#pragma once
#include <string>
#include <QObject>
struct pad_device_info
{
std::string name;
QString localized_name;
bool is_connected{false};
};
Q_DECLARE_METATYPE(pad_device_info)