mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 13:08:27 +00:00
20 lines
615 B
C
20 lines
615 B
C
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#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
|
||
|
std::string pic_path; // path of pic1.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";
|
||
|
};
|