1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-26 21:57:45 +00:00
novus/parts/exl/exlpart.h

23 lines
No EOL
434 B
C++

// 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
{
Q_OBJECT
public:
explicit EXLPart(GameData *data, QWidget *parent = nullptr);
void load(physis_Buffer file);
private:
GameData *data = nullptr;
QTableWidget *m_tableWidget = nullptr;
};