blob: 7bd07e0bbc66068396261484aca4676b4920e063 (
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
|
#ifndef STARFIELDSAVEGAME_H
#define STARFIELDSAVEGAME_H
#include "gamebryosavegame.h"
#include "windows_compat.h"
#include <QDataStream>
class GameStarfield;
class StarfieldSaveGame : public GamebryoSaveGame
{
public:
StarfieldSaveGame(QString const& fileName, GameStarfield const* game);
protected:
// Fetch easy-to-access information.
void getData(FileWrapper& file) const;
void fetchInformationFields(FileWrapper& file, uint32_t& saveNumber,
unsigned char& saveVersion, QString& playerName,
unsigned short& playerLevel, QString& playerLocation,
FILETIME& creationTime) const;
std::unique_ptr<DataFields> fetchDataFields() const override;
};
#endif // STARFIELDSAVEGAME_H
|