mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-25 13:17:46 +00:00
File Explorer is still in functionality limbo, but this at least removes the libxiv dependency and will make it easier to use the new GUI parts system in the future.
20 lines
No EOL
263 B
C++
20 lines
No EOL
263 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include <QMap>
|
|
#include <QTreeWidget>
|
|
#include <QMdiArea>
|
|
|
|
struct GameData;
|
|
|
|
class MainWindow : public QMainWindow {
|
|
public:
|
|
MainWindow(GameData* data);
|
|
|
|
private:
|
|
|
|
QMdiArea* mdiArea = nullptr;
|
|
|
|
|
|
GameData* data;
|
|
}; |