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

21 lines
379 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QMainWindow>
#include "filecache.h"
struct GameData;
class MDLPart;
class MainWindow : public QMainWindow {
public:
MainWindow(GameData* data);
private:
GameData* data = nullptr;
MDLPart* part = nullptr;
FileCache cache;
};