Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mistral-AI-Game-Jam
/
shyguys_2
like
43
Running
on
T4
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
refs/pr/2
shyguys_2
/
src
/
index.js
theo-michel
Upload 51 files
eae3d7c
verified
14 days ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
{
Game
}
from
"./game.js"
;
// start the game when DOM is loaded
document
.
addEventListener
(
"DOMContentLoaded"
,
() =>
{
const
game =
new
Game
();
game.
run
();
});