mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-27 14:17:45 +00:00
22 lines
386 B
C
22 lines
386 B
C
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <physis.hpp>
|
||
|
|
||
|
#include "imagelabel.h"
|
||
|
|
||
|
class TexPart : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
explicit TexPart(GameData *data);
|
||
|
|
||
|
void load(physis_Buffer file);
|
||
|
|
||
|
private:
|
||
|
GameData *data = nullptr;
|
||
|
|
||
|
ImageLabel *m_label = nullptr;
|
||
|
};
|