Edit the code on the left side to customize the game
game_speed =
flap_amount =
gravity =
gap_min =
gap_max =
obstacle_distance =
points_name =
snow_column_count =
show_fps =
score = 0 game_ended = false def game_loop(): obstacles = generate_obstacles() set_gravity(gravity) bird = create_bird() bird.size = bird_size if is_colliding(bird, obstacles): game_ended = true while !game_ended: game_loop()