mirror of https://github.com/bsnes-emu/bsnes.git
27 lines
422 B
C++
27 lines
422 B
C++
struct System {
|
|
void run();
|
|
void runtosave();
|
|
void runthreadtosave();
|
|
|
|
void load();
|
|
void power();
|
|
void reset();
|
|
|
|
void init();
|
|
void term();
|
|
|
|
serializer serialize();
|
|
bool unserialize(serializer&);
|
|
|
|
void serialize(serializer&);
|
|
void serialize_all(serializer&);
|
|
void serialize_init();
|
|
unsigned serialize_size;
|
|
|
|
struct Information {
|
|
string manifest;
|
|
} information;
|
|
};
|
|
|
|
extern System system;
|