1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 04:57:45 +00:00
novus/armoury/include/mainwindow.h
Joshua Goins 2eccb10eda Remove fmt dependency
It's no longer used, and replaced with physis functions where formatting
was needed.
2023-09-23 14:51:47 -04:00

28 lines
No EOL
564 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 <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;
};