mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
16 lines
369 B
C++
16 lines
369 B
C++
#ifndef _SAVEIMPORTER_H_
|
|
#define _SAVEIMPORTER_H_
|
|
|
|
#include "filesystem_def.h"
|
|
#include "Stream.h"
|
|
#include "SaveImporterBase.h"
|
|
|
|
class CSaveImporter
|
|
{
|
|
public:
|
|
typedef CSaveImporterBase::OverwritePromptHandlerType OverwritePromptHandlerType;
|
|
|
|
static void ImportSave(Framework::CStream&, const fs::path&, const OverwritePromptHandlerType&);
|
|
};
|
|
|
|
#endif
|