mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +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();
|
|
}
|
|
|
|
|
|
|