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

13 lines
178 B
C
Raw Normal View History

2022-03-16 00:31:24 -04:00
#pragma once
#include <QMainWindow>
struct GameData;
2022-03-16 00:31:24 -04:00
class MainWindow : public QMainWindow {
public:
MainWindow(GameData* data);
2022-03-16 00:31:24 -04:00
private:
GameData* data = nullptr;
2022-03-16 00:31:24 -04:00
};