mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
20 lines
285 B
C
20 lines
285 B
C
|
#ifndef _GAMEDATA_H_
|
||
|
#define _GAMEDATA_H_
|
||
|
|
||
|
#include <string>
|
||
|
#include "SystemData.h"
|
||
|
|
||
|
class GameData
|
||
|
{
|
||
|
public:
|
||
|
GameData(SystemData* system, std::string path, std::string name);
|
||
|
|
||
|
std::string getName();
|
||
|
private:
|
||
|
SystemData* mSystem;
|
||
|
std::string mPath;
|
||
|
std::string mName;
|
||
|
};
|
||
|
|
||
|
#endif
|