2020-04-03 14:28:36 +03:00

43 lines
1.1 KiB
C++

//====================================================================
// FOUCSE GAME PROGRAM PAGE
//====================================================================
// GAME FOUCSE - MENU
//--------------------------------------------------------------------
void game_foucse_menu()
{
menu_display("FOCUSE");
}
//--------------------------------------------------------------------
// GAME FOUCSE - SETTINGS DISPLAY
//--------------------------------------------------------------------
void game_foucse_settings()
{
}
//--------------------------------------------------------------------
// GAME FOUCSE - GAME PLAY
//--------------------------------------------------------------------
void game_foucse_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 FOUCSE - GAME FINAL RESULT
//--------------------------------------------------------------------
void game_foucse_results()
{
}