1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 05:17:44 +00:00
novus/karuku/include/mainwindow.h

17 lines
No EOL
300 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include "novusmainwindow.h"
struct GameData;
class MainWindow : public NovusMainWindow
{
public:
MainWindow(GameData *data);
private:
GameData *data = nullptr;
};