Exemplo n.º 1
0
static void mouse_cb (int button, int state, int x, int y) {
    QuitGameOver ();
}
Exemplo n.º 2
0
void CGameOver::Mouse (int button, int state, int x, int y) {
	QuitGameOver ();
}
Exemplo n.º 3
0
void GameOverKeys (unsigned int key, bool special, bool release, int x, int y) {
    if (release) return;
    if (key == 13 || key == 27) QuitGameOver ();
}
Exemplo n.º 4
0
void CGameOver::Keyb (unsigned int key, bool special, bool release, int x, int y) {
	if (release) return;
	if (key == 13 || key == SDLK_ESCAPE) QuitGameOver ();
}