1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 03:57:45 +00:00
novus/armoury/include/mainwindow.h

26 lines
476 B
C
Raw Normal View History

2022-04-11 21:59:37 -04:00
#pragma once
#include <QComboBox>
#include <QMainWindow>
#include <fmt/format.h>
2022-08-10 14:52:28 -04:00
#include <physis.hpp>
#include <unordered_map>
2022-04-11 21:59:37 -04:00
#include "fullmodelviewer.h"
2023-07-07 16:16:21 -04:00
#include "gearview.h"
#include "singlegearview.h"
struct GameData;
class FileCache;
2022-04-11 21:59:37 -04:00
class MainWindow : public QMainWindow {
public:
explicit MainWindow(GameData* data);
2022-04-12 20:02:50 -04:00
2022-04-11 21:59:37 -04:00
private:
SingleGearView* gearView = nullptr;
FullModelViewer* fullModelViewer = nullptr;
2022-04-11 21:59:37 -04:00
GameData& data;
FileCache cache;
2022-04-11 21:59:37 -04:00
};