mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
282 B
C++
Executable File
20 lines
282 B
C++
Executable File
class Interface;
|
|
|
|
enum class Input : unsigned {
|
|
Up, Down, Left, Right, B, A, Select, Start,
|
|
};
|
|
|
|
class System {
|
|
public:
|
|
void init(Interface*);
|
|
void power();
|
|
void run();
|
|
|
|
//private:
|
|
Interface *interface;
|
|
};
|
|
|
|
#include <gameboy/interface/interface.hpp>
|
|
|
|
extern System system;
|