2014-09-19 19:23:21 +02:00
|
|
|
#ifndef GAMEDETAILS_H
|
|
|
|
#define GAMEDETAILS_H
|
|
|
|
|
|
|
|
#include "globalconstants.h"
|
|
|
|
#include "gamefile.h"
|
2014-09-19 20:08:46 +02:00
|
|
|
#include "config.h"
|
2014-09-19 19:23:21 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class gameDetails
|
|
|
|
{
|
|
|
|
public:
|
2014-09-19 20:08:46 +02:00
|
|
|
gameDetails();
|
2014-09-19 19:23:21 +02:00
|
|
|
std::vector<gameFile> extras;
|
|
|
|
std::vector<gameFile> installers;
|
|
|
|
std::vector<gameFile> patches;
|
|
|
|
std::vector<gameFile> languagepacks;
|
|
|
|
std::vector<gameDetails> dlcs;
|
|
|
|
std::string gamename;
|
|
|
|
std::string title;
|
|
|
|
std::string icon;;
|
2014-09-19 20:08:46 +02:00
|
|
|
void makeFilepaths(const Config& config);
|
|
|
|
virtual ~gameDetails();
|
2014-09-19 19:23:21 +02:00
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GAMEDETAILS_H
|