blob: 060b9eef5c71a9881e238747edae46a0d5af99fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _SKYRIMSESAVEGAME_H
#define _SKYRIMSESAVEGAME_H
#include "gamebryosavegame.h"
#include "gameskyrimse.h"
#include "windows_compat.h"
namespace MOBase
{
class IPluginGame;
}
class SkyrimSESaveGame : public GamebryoSaveGame
{
public:
SkyrimSESaveGame(QString const& fileName, GameSkyrimSE const* game);
protected:
// Fetch easy-to-access information.
void fetchInformationFields(FileWrapper& wrapper, uint32_t& version,
QString& playerName, unsigned short& playerLevel,
QString& playerLocation, uint32_t& saveNumber,
FILETIME& creationTime) const;
std::unique_ptr<DataFields> fetchDataFields() const override;
};
#endif // _SKYRIMSESAVEGAME_H
|