mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-02 22:05:09 +01:00
16 lines
224 B
C++
16 lines
224 B
C++
#pragma once
|
|
|
|
#include "emu_settings.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include <memory>
|
|
|
|
class input_tab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit input_tab(std::shared_ptr<emu_settings> xemu_settings, QWidget *parent = 0);
|
|
};
|