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