lsnes/include/core/instance.hpp

16 lines
256 B
C++
Raw Normal View History

2014-05-10 11:09:28 +03:00
#ifndef _instance__hpp__included__
#define _instance__hpp__included__
2014-05-10 11:22:31 +03:00
#include "core/movie.hpp"
#include "library/memoryspace.hpp"
2014-05-10 11:09:28 +03:00
struct emulator_instance
{
movie_logic mlogic;
2014-05-10 11:22:31 +03:00
memory_space memory;
2014-05-10 11:09:28 +03:00
};
extern emulator_instance lsnes_instance;
#endif