mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
14 lines
203 B
C++
14 lines
203 B
C++
|
#include "GameData.h"
|
||
|
|
||
|
GameData::GameData(SystemData* system, std::string path, std::string name)
|
||
|
{
|
||
|
mSystem = system;
|
||
|
mPath = path;
|
||
|
mName = name;
|
||
|
}
|
||
|
|
||
|
std::string GameData::getName()
|
||
|
{
|
||
|
return mName;
|
||
|
}
|