1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-03 16:37:46 +00:00
novus/apps/gamelauncher/include/mainwindow.h

24 lines
354 B
C
Raw Normal View History

// 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:
void setupActions();
QProcess *process = nullptr;
};