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