mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
18 lines
285 B
C++
18 lines
285 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
|
|
class rpcn_settings_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
rpcn_settings_dialog(QWidget* parent = nullptr);
|
|
|
|
bool save_config();
|
|
bool create_account();
|
|
|
|
protected:
|
|
QLineEdit *m_edit_host, *m_edit_npid, *m_edit_token;
|
|
};
|