mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-10-05 01:21:48 +02:00
byuu says: [screenshot of the Tetris title screen] Less than fourty-eight hours after starting on this. I guess you weren't kidding, Exophase.
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;
|