#include <LiquidCrystal_I2C.h>
#include <AbleButtons.h>
LiquidCrystal_I2C LCD(0x27, 2, 16);
int button_down = 2; //The blue button
int button_up = 4; //The red button
int start_n_restart_button = 3; //The yellow button
int buzz = 5;
int score;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
void game_over_screen() {
//It will show if u dead and show score too
}
void sound() {
//The song when u jump over something
}