mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-24 04:57:45 +00:00
13 lines
No EOL
178 B
C++
13 lines
No EOL
178 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
struct GameData;
|
|
|
|
class MainWindow : public QMainWindow {
|
|
public:
|
|
MainWindow(GameData* data);
|
|
|
|
private:
|
|
GameData* data = nullptr;
|
|
}; |