mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-24 04:57:45 +00:00
18 lines
267 B
C
18 lines
267 B
C
|
#pragma once
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
#include "filecache.h"
|
||
|
|
||
|
struct GameData;
|
||
|
class MDLPart;
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
public:
|
||
|
MainWindow(GameData* data);
|
||
|
|
||
|
private:
|
||
|
GameData* data = nullptr;
|
||
|
MDLPart* part = nullptr;
|
||
|
FileCache cache;
|
||
|
};
|