Files
bsnes/ui/interface.hpp
Tim Allen 2330ed6e8c Update to release v000r04.
byuu says:

[screenshot of the Tetris title screen]

Less than fourty-eight hours after starting on this. I guess you weren't
kidding, Exophase.
2010-12-30 18:18:47 +11:00

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;