mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-26 21:57:45 +00:00
13 lines
263 B
C
13 lines
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;
|
||
|
};
|