mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
22 lines
421 B
C++
22 lines
421 B
C++
#pragma once
|
|
|
|
// I just want the struct for the save data.
|
|
#include "Emu/Cell/Modules/cellSaveData.h"
|
|
|
|
#include <QDialog>
|
|
#include <QTableWidget>
|
|
|
|
//Used to display the information of a savedata.
|
|
class save_data_info_dialog :public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit save_data_info_dialog(SaveDataEntry save, QWidget* parent = nullptr);
|
|
private:
|
|
void UpdateData();
|
|
|
|
SaveDataEntry m_entry;
|
|
QTableWidget* m_list;
|
|
};
|