mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-24 04:57:45 +00:00
17 lines
No EOL
217 B
C++
17 lines
No EOL
217 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include "renderer.hpp"
|
|
|
|
class GameData;
|
|
|
|
class MainWindow : public QMainWindow {
|
|
public:
|
|
MainWindow(GameData& data);
|
|
|
|
private:
|
|
GameData& data;
|
|
|
|
Renderer* renderer;
|
|
}; |