mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 12:07:45 +00:00
This allows viewing regions in the game. Some of them don't work, not sure why yet.
21 lines
No EOL
367 B
C++
21 lines
No EOL
367 B
C++
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "filecache.h"
|
|
#include "novusmainwindow.h"
|
|
|
|
struct GameData;
|
|
|
|
class MainWindow : public NovusMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(GameData *data);
|
|
|
|
private:
|
|
GameData *data = nullptr;
|
|
FileCache cache;
|
|
}; |