2020-05-25 05:01:08 +03:00

42 lines
1.1 KiB
C++

//====================================================================
// COUNTER GAME PROGRAM PAGE
//====================================================================
// GAME COUNTER - MENU
//--------------------------------------------------------------------
void game_counter_menu()
{
menu_display("COUNTER");
}
//--------------------------------------------------------------------
// GAME COUNTER - SETTINGS DISPLAY
//--------------------------------------------------------------------
void game_counter_settings()
{
}
//--------------------------------------------------------------------
// GAME COUNTER - GAME PLAY
//--------------------------------------------------------------------
void game_counter_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 COUNTER - GAME FINAL RESULT
//--------------------------------------------------------------------
void game_counter_results()
{
}