1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 21:07:46 +00:00
novus/parts/tex/texpart.h

24 lines
No EOL
427 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, QWidget *parent = nullptr);
void load(physis_Buffer file);
private:
GameData *data = nullptr;
ImageLabel *m_label = nullptr;
};