1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-28 14:37:45 +00:00
novus/parts/dic/dicpart.h

23 lines
No EOL
418 B
C++

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