mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-25 13:17:46 +00:00
24 lines
No EOL
400 B
C++
24 lines
No EOL
400 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
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TexPart(GameData *data);
|
|
|
|
void load(physis_Buffer file);
|
|
|
|
private:
|
|
GameData *data = nullptr;
|
|
|
|
ImageLabel *m_label = nullptr;
|
|
}; |