mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-20 15:40:30 +01:00
11 lines
323 B
C++
11 lines
323 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
#include "rpcsx/fw/ps3/cellSaveData.h"
|
|
|
|
class save_data_dialog : public SaveDialogBase
|
|
{
|
|
public:
|
|
s32 ShowSaveDataList(const std::string& base_dir, std::vector<SaveDataEntry>& save_entries, s32 focused, u32 op, vm::ptr<CellSaveDataListSet> listSet, bool enable_overlay) override;
|
|
};
|