1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 03:57:45 +00:00
novus/karuku/include/mainwindow.h

17 lines
300 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2022-03-16 00:31:24 -04:00
#pragma once
2023-10-10 18:11:40 -04:00
#include "novusmainwindow.h"
2022-03-16 00:31:24 -04:00
struct GameData;
2022-03-16 00:31:24 -04:00
2023-10-10 18:11:40 -04:00
class MainWindow : public NovusMainWindow
2023-10-10 18:02:13 -04:00
{
2022-03-16 00:31:24 -04:00
public:
2023-10-10 18:02:13 -04:00
MainWindow(GameData *data);
2022-03-16 00:31:24 -04:00
private:
2023-10-10 18:02:13 -04:00
GameData *data = nullptr;
2022-03-16 00:31:24 -04:00
};