aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/skyrimvr/skyrimvrdataarchives.h
blob: be85d57c84b8c6e5866f82cf36c0b912b816ea70 (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
#ifndef _SKYRIMVRDATAARCHIVES_H
#define _SKYRIMVRDATAARCHIVES_H

#include "gamebryodataarchives.h"
#include <QDir>
#include <QStringList>

namespace MOBase
{
class IProfile;
}

class SkyrimVRDataArchives : public GamebryoDataArchives
{
public:
  using GamebryoDataArchives::GamebryoDataArchives;

  virtual QStringList vanillaArchives() const override;
  virtual QStringList archives(const MOBase::IProfile* profile) const override;

private:
  virtual void writeArchiveList(MOBase::IProfile* profile,
                                const QStringList& before) override;
};

#endif  // _SKYRIMVRDATAARCHIVES_H