43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
//====================================================================
|
|
// REACTION GAME PROGRAM PAGE
|
|
//====================================================================
|
|
// GAME REACTION - MENU
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_reaction_menu()
|
|
{
|
|
menu_display("REACTION");
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
// GAME REACTION - SETTINGS DISPLAY
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_reaction_settings()
|
|
{
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
// GAME REACTION - GAME PLAY
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_reaction_play()
|
|
{
|
|
oled_clear();
|
|
drawTextCenter(128/2, 0, 2, "KICKS");
|
|
//drawTextCenter(128/2, 20, 3, String(count));
|
|
drawTextCenter(128/2, 50, 1, "<< EXIT >>");
|
|
oled_show();
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
// GAME REACTION - GAME FINAL RESULT
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_reaction_results()
|
|
{
|
|
|
|
}
|