1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 05:17:44 +00:00
novus/parts/tex/texpart.h

24 lines
427 B
C
Raw Normal View History

2023-10-12 21:43:49 -04:00
// 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
{
2023-10-12 23:45:39 -04:00
Q_OBJECT
2023-10-12 21:43:49 -04:00
public:
explicit TexPart(GameData *data, QWidget *parent = nullptr);
2023-10-12 21:43:49 -04:00
void load(physis_Buffer file);
private:
GameData *data = nullptr;
ImageLabel *m_label = nullptr;
};