1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-03 08:27:46 +00:00
novus/parts/exl/exlpart.h

21 lines
393 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QTableWidget>
#include <QWidget>
#include <physis.hpp>
class EXLPart : public QWidget
{
public:
explicit EXLPart(GameData *data);
void load(physis_Buffer file);
private:
GameData *data = nullptr;
QTableWidget *m_tableWidget = nullptr;
};