rpcsx/rpcs3/Emu/state.h
2015-12-04 23:37:37 +03:00

16 lines
183 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;
}