mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
202 B
C++
12 lines
202 B
C++
#pragma once
|
|
#include "config.h"
|
|
|
|
std::vector<std::string> GetAdapters();
|
|
|
|
class SettingsDialog : public wxDialog
|
|
{
|
|
public:
|
|
SettingsDialog(wxWindow *parent, rpcs3::config_t* cfg = &rpcs3::config);
|
|
};
|
|
|