1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 05:17:44 +00:00
novus/armoury/include/mainwindow.h

29 lines
No EOL
588 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QComboBox>
#include <QMainWindow>
#include <fmt/format.h>
#include <physis.hpp>
#include <unordered_map>
#include "fullmodelviewer.h"
#include "gearview.h"
#include "singlegearview.h"
struct GameData;
class FileCache;
class MainWindow : public QMainWindow {
public:
explicit MainWindow(GameData* data);
private:
SingleGearView* gearView = nullptr;
FullModelViewer* fullModelViewer = nullptr;
GameData& data;
FileCache cache;
};