bsnes/gameboy/system/system.hpp

17 lines
210 B
C++
Raw Normal View History

class Interface;
class System {
public:
void init(Interface*);
void power();
void reset();
void run();
//private:
Interface *interface;
};
#include <interface/interface.hpp>
extern System system;