コード例 #1
0
ファイル: game_over.cpp プロジェクト: hreikin/extremetuxracer
static void mouse_cb (int button, int state, int x, int y) {
    QuitGameOver ();
}
コード例 #2
0
void CGameOver::Mouse (int button, int state, int x, int y) {
	QuitGameOver ();
}
コード例 #3
0
ファイル: game_over.cpp プロジェクト: hreikin/extremetuxracer
void GameOverKeys (unsigned int key, bool special, bool release, int x, int y) {
    if (release) return;
    if (key == 13 || key == 27) QuitGameOver ();
}
コード例 #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 ();
}