rpcsx/rpcs3/rpcs3qt/pad_device_info.h
2024-02-20 10:06:02 +01: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)