mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:53:51 +00:00
2aaf9105af
Save Browser state to the client config
14 lines
324 B
C++
14 lines
324 B
C++
#include <QApplication>
|
|
#include <components/settings/settings.hpp>
|
|
#include <components/files/configurationmanager.hpp>
|
|
#include <apps/browser/netutils/QueryClient.hpp>
|
|
#include "MainWindow.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
MainWindow d;
|
|
|
|
d.show();
|
|
return app.exec();
|
|
}
|