1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 21:27:45 +00:00
novus/explorer/include/filepropertieswindow.h
Joshua Goins 05dfd81581 Overhaul file explorer
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.
2023-04-09 15:32:09 -04:00

13 lines
No EOL
263 B
C++

#pragma once
#include <QMdiSubWindow>
#include <physis.hpp>
class FilePropertiesWindow : public QWidget {
Q_OBJECT
public:
explicit FilePropertiesWindow(GameData* data, QString path, QWidget *parent = nullptr);
private:
GameData* data = nullptr;
};