1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 13:07:44 +00:00
novus/apps/mdlviewer/include/mainwindow.h
Joshua Goins b6cc54405c Move applications to their own folder
To try to cut down the amount of top-level folders
2024-05-10 16:44:45 -04:00

28 lines
No EOL
528 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include "filecache.h"
#include "novusmainwindow.h"
#include <QFormLayout>
struct GameData;
class MDLPart;
class MainWindow : public NovusMainWindow
{
Q_OBJECT
public:
explicit MainWindow(GameData *data);
protected:
void setupFileMenu(QMenu *menu) override;
GameData *data = nullptr;
MDLPart *part = nullptr;
FileCache cache;
QFormLayout *m_detailsLayout = nullptr;
};