mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 03:57:45 +00:00
13 lines
167 B
C
13 lines
167 B
C
|
#pragma once
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
class GameData;
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
public:
|
||
|
MainWindow(GameData& data);
|
||
|
|
||
|
private:
|
||
|
GameData& data;
|
||
|
};
|