import gradio as gr
# Updated HTML with fixes for continuous bird spawning
game_html = """
Bird Shooter Game
Score: 0
GAME OVER
"""
# Define the Gradio interface
def launch_game():
return game_html
# Create the Gradio app
with gr.Blocks(title="Bird Shooter Game") as demo:
gr.Markdown("# Bird Shooter Game")
gr.Markdown("Click on the birds to shoot them and earn points! Birds will continuously fly across the screen.")
game_output = gr.HTML(label="Game", value=launch_game())
# Launch the app
demo.launch()