mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
15 lines
182 B
C++
15 lines
182 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;
|
|
} |