mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12: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;
|
|
}
|