mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2024-11-20 11:49:17 +01:00
26 lines
511 B
C
26 lines
511 B
C
|
#ifndef GAMEDETAILS_H
|
||
|
#define GAMEDETAILS_H
|
||
|
|
||
|
#include "globalconstants.h"
|
||
|
#include "gamefile.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
|
||
|
class gameDetails
|
||
|
{
|
||
|
public:
|
||
|
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;;
|
||
|
protected:
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif // GAMEDETAILS_H
|