Files
shadps4/old_stuff/shadPS4/emulator/gameInfo.h
2023-03-28 09:40:22 +03:00

17 lines
424 B
C++

#pragma once
#include <string>
struct GameInfo
{
std::string path; //root path of game directory (normaly directory that contains eboot.bin)
std::string icon_path;//path of icon0.png
//variables extracted from param.sfo
std::string name = "Unknown";
std::string serial = "Unknown";
std::string app_ver = "Unknown";
std::string version = "Unknown";
std::string category = "Unknown";
std::string fw = "Unknown";
};