mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
16 lines
184 B
C++
16 lines
184 B
C++
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
namespace rpcs3
|
|
{
|
|
struct state_t
|
|
{
|
|
config_t config;
|
|
|
|
std::string path_to_elf;
|
|
std::string virtual_path_to_elf;
|
|
};
|
|
|
|
extern state_t state;
|
|
}
|