Play-/Source/saves/SaveImporter.h
2018-04-30 21:01:23 +01:00

17 lines
388 B
C++

#ifndef _SAVEIMPORTER_H_
#define _SAVEIMPORTER_H_
#include <boost/filesystem.hpp>
#include "Stream.h"
#include "SaveImporterBase.h"
class CSaveImporter
{
public:
typedef CSaveImporterBase::OverwritePromptHandlerType OverwritePromptHandlerType;
static void ImportSave(Framework::CStream&, const boost::filesystem::path&, const OverwritePromptHandlerType&);
};
#endif