1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 12:37:45 +00:00
novus/mapeditor/include/maplistwidget.h
Joshua Goins c19ff1e132 Add mapeditor program
This allows viewing regions in the game. Some of them don't work, not
sure why yet.
2024-02-02 14:29:48 -05:00

24 lines
457 B
C++

// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QListView>
#include <QWidget>
#include <physis.hpp>
class MapListWidget : public QWidget
{
Q_OBJECT
public:
explicit MapListWidget(GameData *data, QWidget *parent = nullptr);
Q_SIGNALS:
void mapSelected(const QString &name);
private:
QListView *listWidget = nullptr;
GameData *data = nullptr;
};