mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 20:17:46 +00:00
18 lines
No EOL
267 B
C++
18 lines
No EOL
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;
|
|
}; |