mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
300 B
C++
Executable File
13 lines
300 B
C++
Executable File
struct Interface : public GameBoy::Interface {
|
|
int16_t inputState[Scancode::Limit];
|
|
|
|
void video_refresh(const uint8_t *data);
|
|
void audio_sample(signed left, signed right);
|
|
void input_poll();
|
|
bool input_poll(unsigned id);
|
|
|
|
void message(const string &text);
|
|
};
|
|
|
|
extern Interface interface;
|