//==================================================================== // 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() { }