1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 05:17:44 +00:00
novus/apps/gamelauncher/include/mainwindow.h
Joshua Goins 0cf37355cb Switch to KXmlGuiWindow
This will eventually use more KStandardAction, and gets rid of our
custom code which is just doing a worse job than KXmlGui.
2024-05-27 18:18:54 -04:00

21 lines
No EOL
327 B
C++

// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <KXmlGuiWindow>
#include <QProcess>
struct GameData;
class MainWindow : public KXmlGuiWindow
{
Q_OBJECT
public:
explicit MainWindow();
private:
QProcess *process = nullptr;
};