mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 03:57:45 +00:00
22 lines
382 B
C
22 lines
382 B
C
|
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "filecache.h"
|
||
|
#include "gearview.h"
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
struct GameData;
|
||
|
|
||
|
class MaterialView : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MaterialView(GameData *data, QWidget *parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
GameData *data = nullptr;
|
||
|
};
|