lsnes/include/core/instance.hpp
2014-05-10 11:54:15 +03:00

22 lines
453 B
C++

#ifndef _instance__hpp__included__
#define _instance__hpp__included__
#include "core/movie.hpp"
#include "core/memorywatch.hpp"
#include "library/lua-base.hpp"
#include "library/memoryspace.hpp"
#include "library/settingvar.hpp"
struct emulator_instance
{
emulator_instance();
movie_logic mlogic;
memory_space memory;
lua::state lua;
lsnes_memorywatch_set mwatch;
settingvar::cache setcache;
};
extern emulator_instance lsnes_instance;
#endif