takeone-kicker/firmware/TOBOARD/G_TIMEATTACK.ino
2020-04-03 14:28:36 +03:00

42 lines
1.2 KiB
C++

//====================================================================
// TIMEATTACK GAME PROGRAM PAGE
//====================================================================
// GAME TIMEATTACK - MENU
//--------------------------------------------------------------------
void game_timeattack_menu()
{
menu_display("TIMEATTACK");
}
//--------------------------------------------------------------------
// GAME TIMEATTACK - SETTINGS DISPLAY
//--------------------------------------------------------------------
void game_timeattack_settings()
{
}
//--------------------------------------------------------------------
// GAME TIMEATTACK - GAME PLAY
//--------------------------------------------------------------------
void game_timeattack_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 TIMEATTACK - GAME FINAL RESULT
//--------------------------------------------------------------------
void game_timeattack_results()
{
}