mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
17 lines
184 B
C++
17 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;
|
|
}
|