42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
//====================================================================
|
|
// DECISION GAME PROGRAM PAGE
|
|
//====================================================================
|
|
// GAME DECISION - MENU
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_decision_menu()
|
|
{
|
|
menu_display("DECISION");
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
// GAME DECISION - SETTINGS DISPLAY
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_decision_settings()
|
|
{
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
// GAME DECISION - GAME PLAY
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_decision_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 DECISION - GAME FINAL RESULT
|
|
//--------------------------------------------------------------------
|
|
|
|
void game_decision_results()
|
|
{
|
|
|
|
}
|