mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
325 B
C++
12 lines
325 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
#include "Emu/Memory/vm.h"
|
|
#include "Emu/Cell/Modules/cellSaveData.h"
|
|
|
|
class save_data_dialog : public SaveDialogBase
|
|
{
|
|
public:
|
|
s32 ShowSaveDataList(std::vector<SaveDataEntry>& save_entries, s32 focused, u32 op, vm::ptr<CellSaveDataListSet> listSet, bool enable_overlay) override;
|
|
};
|