mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
19 lines
288 B
C++
19 lines
288 B
C++
|
#include "wimp.h"
|
||
|
#include "stdio.h"
|
||
|
#include <QGuiApplication>
|
||
|
#include <QQmlApplicationEngine>
|
||
|
#include <QListView>
|
||
|
|
||
|
int Wimp::CreateMainWindow()
|
||
|
{
|
||
|
|
||
|
|
||
|
QQmlApplicationEngine engine;
|
||
|
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
|
||
|
|
||
|
return this->exec();
|
||
|
}
|
||
|
|
||
|
|
||
|
|