1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 04:57:45 +00:00
novus/apps/gamelauncher/include/mainwindow.h

21 lines
333 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 <QProcess>
#include "novusmainwindow.h"
struct GameData;
class MainWindow : public NovusMainWindow
{
Q_OBJECT
public:
explicit MainWindow();
private:
QProcess *process = nullptr;
};