1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 20:47:45 +00:00
novus/apps/gamelauncher/include/mainwindow.h
Joshua Goins 2720e5fd7a Add a new game launcher program
This is simplistic for now, but I want to expand it for quick offline
testing.
2024-05-18 15:14:22 -04:00

21 lines
No EOL
333 B
C++

// 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;
};