1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 04:27:45 +00:00
novus/exdviewer/include/mainwindow.h

16 lines
290 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2022-03-16 00:31:24 -04:00
#pragma once
#include <QMainWindow>
struct GameData;
2022-03-16 00:31:24 -04:00
class MainWindow : public QMainWindow {
public:
MainWindow(GameData* data);
2022-03-16 00:31:24 -04:00
private:
GameData* data = nullptr;
2022-03-16 00:31:24 -04:00
};