Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
4 |
with gr.Blocks() as app:
|
5 |
gr.HTML("""
|
|
|
6 |
<div id="demo">
|
7 |
<iframe
|
8 |
src="https://omnibus-game-test-static.static.hf.space"
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
sky = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/sky.png'
|
4 |
+
ground = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/platform.png'
|
5 |
+
star = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/star.png'
|
6 |
+
bomb = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/bomb.png'
|
7 |
+
dude = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/dude.png'
|
8 |
with gr.Blocks() as app:
|
9 |
gr.HTML("""
|
10 |
+
|
11 |
<div id="demo">
|
12 |
<iframe
|
13 |
src="https://omnibus-game-test-static.static.hf.space"
|