1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 13:07:44 +00:00
novus/mdlviewer/include/mainwindow.h

26 lines
No EOL
472 B
C++

#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 MainWindow : public QMainWindow {
public:
explicit MainWindow(GameData* data);
private:
std::vector<GearInfo> gears;
SingleGearView* gearView = nullptr;
FullModelViewer* fullModelViewer = nullptr;
GameData& data;
};